-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (22 loc) · 822 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
[package]
name = "microtype"
version = "0.7.6"
edition = "2021"
repository = "https://github.com/cameron1024/microtype"
license = "MIT"
description = "A crate to simplify the creation of microtypes"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
microtype-macro = { version = "0.2.6", path = "./microtype-macro" }
secrecy = { version = "0.8", optional = true }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
trybuild = "1.0"
[features]
default = ["secret", "test_impls", "deref_impls"]
secret = ["secrecy", "microtype-macro/secret"]
serde = ["secrecy/serde", "microtype-macro/serde"]
test_impls = ["microtype-macro/test_impls"]
deref_impls = ["microtype-macro/deref_impls"]
diesel = ["microtype-macro/diesel"]