-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (29 loc) · 973 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
[package]
name = "aws-arn"
version = "0.3.1"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
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" }
regex = "1.6"
serde = { optional = true, version = "1.0.110", features = ["derive"] }
[dev-dependencies]
proptest = "1.0.0"
pretty_assertions = "1.0.0"
doc-comment = "0.3"
[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" ]