forked from johnstonskj/rust-aws-arn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 939 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
[package]
name = "aws-arn"
version = "0.2.0"
authors = ["Simon Johnston <[email protected]>"]
edition = "2018"
description = "Provides types, builders, and other helpers to manipulate AWS Amazon Resource Name (ARN) strings"
documentation = "https://docs.rs/aws-arn/"
repository = "https://github.com/johnstonskj/rust-aws-arn.git"
license = "MIT"
readme = "README.md"
publish = true
[features]
default = ["builders", "known", "serde_support"]
builders = ["known", "lazy_static"]
known = []
serde_support = ["serde"]
[dependencies]
# Optional dependencies
lazy_static = { optional = true, version = "1.4.0" }
serde = { optional = true, version = "1.0.110", features = ["derive"] }
[dev-dependencies]
proptest = "1.0.0"
pretty_assertions = "1.0.0"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-fmt", "run-cargo-test" ]