forked from rusoto/rusoto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (53 loc) · 1.33 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (53 loc) · 1.33 KB
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
[package]
authors = ["Anthony DiMarco <ocramida@gmail.com>", "Jimmy Cuadra <jimmy@jimmycuadra.com>", "Matthew Mayer <matthewkmayer@gmail.com>"]
build = "build.rs"
description = "AWS SDK for Rust"
documentation = "http://rusoto.github.io/rusoto/rusoto/index.html"
exclude = [".gitignore", ".travis.yml", "docgen.sh", "helpers/**/*", "codegen/**/*"]
keywords = ["AWS", "Amazon"]
license = "MIT"
name = "rusoto"
readme = "README.md"
repository = "https://github.com/rusoto/rusoto"
version = "0.14.1"
[build-dependencies]
[build-dependencies.rusoto_codegen]
default-features = false
path = "codegen"
version = ">= 0.2.1"
[dependencies]
chrono = "0.2.21"
hyper = "0.8.1"
log = "0.3.6"
openssl = "0.7.9"
regex = "0.1.65"
rustc-serialize = "0.3.19"
serde = "0.7.6"
serde_json = "0.7.0"
time = "0.1.35"
url = "0.5.9"
xml-rs = "0.1.26"
[dependencies.clippy]
optional = true
version = "0.0"
[dependencies.serde_macros]
optional = true
version = "0.7.5"
[dev-dependencies]
env_logger = "0.3.3"
rand = "^0.3.14"
[features]
all = ["dynamodb", "firehose", "ec2", "ecs", "ets", "kinesis", "kms", "s3", "sqs"]
default = ["with-syntex"]
dynamodb = []
ec2 = []
ecs = []
ets = []
firehose = []
kinesis = []
kms = []
nightly = ["serde_macros", "rusoto_codegen/nightly"]
nightly-testing = ["clippy", "nightly"]
s3 = []
sqs = []
with-syntex = ["rusoto_codegen/with-syntex"]