-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
76 lines (69 loc) · 1.42 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "heroku_rs"
version = "0.6.0" # don't forget to update html_root_url
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bensadiku/heroku_rs"
description = "Rust bindings for the Heroku API"
documentation = "https://docs.rs/heroku_rs"
homepage = "https://github.com/bensadiku/heroku_rs"
keywords = ["heroku", "api", "wrapper", "rust"]
authors = ["Behxhet Sadiku <bensadiku65@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
http = "0.2"
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.2"
failure = "0.1.8"
serde_with = "1.3"
[features]
default = [
"account",
"addons",
"apps",
"builds",
"collaborators",
"config_vars",
"custom",
"domains",
"dynos",
"formations",
"logs",
"misc",
"oauth",
"pipelines",
"releases",
"review",
"slugs",
"space",
"teams",
"testing",
"builder",
]
account = []
addons = []
apps = []
builds = []
collaborators = []
config_vars = []
custom = []
domains = []
dynos = []
formations = []
logs = []
misc = []
oauth = []
pipelines = []
releases = []
review = []
slugs = []
space = []
teams = []
testing = []
builder = []
[dev-dependencies]
dotenv = "0.15.0"