req/Cargo.toml

27 lines
712 B
TOML
Raw Permalink Normal View History

2024-05-08 09:52:34 +00:00
[package]
name = "req"
2024-05-12 21:27:33 +00:00
version = "1.0.0"
2024-05-08 09:52:34 +00:00
edition = "2021"
2024-05-08 12:18:03 +00:00
default-run = "req"
2024-05-08 09:52:34 +00:00
2024-05-12 21:27:33 +00:00
[profile.release]
strip = "symbols"
lto = "fat"
split-debuginfo = "true"
codegen-units = 1
2024-05-08 09:52:34 +00:00
[dependencies]
anyhow = "1.0.83"
2024-05-08 13:50:35 +00:00
clap = { version = "4.5.4", features = ["derive"] }
2024-05-12 21:27:33 +00:00
clap_complete_command = "0.5.1"
2024-05-08 09:52:34 +00:00
indexmap = { version = "2.2.6", features = ["serde"] }
2024-05-10 08:23:49 +00:00
markdown = "1.0.0-alpha.17"
2024-05-08 14:48:40 +00:00
regex = "1.10.4"
2024-05-08 09:52:34 +00:00
rsn = "0.1.0"
2024-05-09 20:17:00 +00:00
schemars = { version = "0.8.19", features = ["indexmap2"] }
2024-05-08 09:52:34 +00:00
serde = { version = "1.0.201", features = ["derive"] }
2024-05-09 20:17:00 +00:00
serde_json = { version = "1.0.117", features = ["indexmap", "preserve_order"] }
2024-05-08 09:52:34 +00:00
serde_yaml = "0.9.34"
stringlit = "2.1.0"
toml = { version = "0.8.12", features = ["indexmap", "preserve_order"] }