forked from ATLAS-Space-Operations/rust-freedom-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (21 loc) · 789 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
[package]
name = "freedom-models"
version = "1.0.0"
edition = "2021"
authors = ["Caleb Leinz <[email protected]>"]
description = "Models for the Freedom API"
readme = "README.md"
repository = "https://github.com/ATLAS-Space-Operations/rust-freedom-models"
[dependencies]
cidr = { version = "0.2.2" }
strum = { version = "0.25.0", features = ["derive"] }
thiserror = { version = "1.0.56" }
time = { version = "0.3.36", features = ["serde-human-readable", "macros"] }
url = { version = "2.5.0" }
# Optional dependencies
serde = { version = "1.0.195", features = ["derive"], optional = true }
serde_with = { version = "3.3.0", optional = true }
[dev-dependencies]
serde_json = { version = "1.0.111" }
[features]
serde = ["dep:serde", "dep:serde_with", "url/serde", "cidr/serde"]