27 lines
712 B
TOML
27 lines
712 B
TOML
[package]
|
|
name = "req"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
default-run = "req"
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
lto = "fat"
|
|
split-debuginfo = "true"
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.83"
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
|
clap_complete_command = "0.5.1"
|
|
indexmap = { version = "2.2.6", features = ["serde"] }
|
|
markdown = "1.0.0-alpha.17"
|
|
regex = "1.10.4"
|
|
rsn = "0.1.0"
|
|
schemars = { version = "0.8.19", features = ["indexmap2"] }
|
|
serde = { version = "1.0.201", features = ["derive"] }
|
|
serde_json = { version = "1.0.117", features = ["indexmap", "preserve_order"] }
|
|
serde_yaml = "0.9.34"
|
|
stringlit = "2.1.0"
|
|
toml = { version = "0.8.12", features = ["indexmap", "preserve_order"] }
|