-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (33 loc) · 1004 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "tapioca"
version = "0.0.1"
authors = ["Oliver Ford <ojf13@imperial.ac.uk>"]
repository = "https://github.com/OJFord/tapioca.git"
description = "Type-safe REST client using the OpenAPI Specification"
readme = "README.md"
license-file = "LICENCE"
keywords = ["REST", "API", "OAS", "OpenAPI"]
categories = ["api-bindings", "development-tools", "web-programming::http-client"]
[lib]
name = "tapioca"
path = "src/lib.rs"
crate-type = ["rlib"]
[badges]
travis-ci = {repository="OJFord/tapioca"}
is-it-maintained-issue-resolution = {repository="OJFord/tapioca"}
is-it-maintained-open-issues = {repository="OJFord/tapioca"}
[dependencies]
base64 = "0.6"
clippy = {version="0.0", optional=true}
reqwest = {version="0.9", features=["hyper-011"]}
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dependencies.tapioca-codegen]
version = "0.0.1"
path = "tapioca-codegen"
[dev-dependencies]
compiletest_rs = "0.2"
[dev-dependencies.tapioca-testutil]
version = "0.0.1"
path = "tests/util"