You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "tourmaline"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
codename = "Walter White"
|
|
|
|
[lib]
|
|
name = "tourmaline"
|
|
|
|
[[bin]]
|
|
name = "trm"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.3.0", features = ["derive"] }
|
|
color-eyre = "0.6.2"
|
|
dotenv = "0.15.0"
|
|
embed-nu = "0.8.0"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2.144"
|
|
miette = { version = "5.9.0", features = ["fancy"] }
|
|
paste = "1.0.12"
|
|
rusty-value = { version = "0.6.0", features = ["derive", "json"] }
|
|
serde = { version = "1.0.163", features = ["derive"] }
|
|
serde_json = "1.0.96"
|
|
sys-mount = "2.0.2"
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.28.1", features = ["rt", "io-std", "io-util", "process", "time", "macros", "tracing", "fs"] }
|
|
toml = "0.7.4"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
valico = "4.0.0"
|
|
|
|
[build-dependencies]
|
|
cargo_toml = "0.15.2"
|
|
serde = { version = "1.0.163", features = ["derive"] }
|