-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
32 lines (29 loc) · 805 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
[package]
name = "envy-store"
version = "0.1.0"
authors = ["softprops <[email protected]>"]
description = "deserialize AWS parameter store values into typesafe structs"
documentation = "https://softprops.github.io/envy-store"
homepage = "https://github.com/softprops/envy-store"
repository = "https://github.com/softprops/envy-store"
keywords = ["serde", "aws", "parameter-store", "config"]
license = "MIT"
readme = "README.md"
edition = "2018"
categories = [
"config"
]
[badges]
coveralls = { repository = "softprops/envy-store"}
travis-ci = { repository = "softprops/envy-store"}
[dependencies]
envy = "0.4"
serde = "1.0"
rusoto_ssm = "0.36"
futures = "0.1"
[dev-dependencies]
maplit = "1.0"
rusoto_mock = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = "0.1"