req/Cargo.toml

27 lines
801 B
TOML
Raw Normal View History

2024-05-08 09:52:34 +00:00
[package]
name = "req"
version = "0.1.0"
edition = "2021"
2024-05-08 12:18:03 +00:00
default-run = "req"
2024-05-08 09:52:34 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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
crossterm = "0.27.0"
indexmap = { version = "2.2.6", features = ["serde"] }
2024-05-10 08:23:49 +00:00
markdown = "1.0.0-alpha.17"
2024-05-08 09:52:34 +00:00
ratatui = "0.26.2"
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"] }
tui = "0.19.0"
2024-05-09 21:14:14 +00:00
version_operators = "0.0.1"