19 lines
595 B
TOML
19 lines
595 B
TOML
[package]
|
|
name = "dtmm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.15", features = ["color", "derive", "std", "cargo", "unicode"] }
|
|
color-eyre = "0.6.2"
|
|
confy = "0.5.1"
|
|
druid = { git = "https://github.com/linebender/druid.git", features = ["im"] }
|
|
sdk = { path = "../../lib/sdk", version = "0.2.0" }
|
|
serde = "1.0.152"
|
|
tokio = "1.23.0"
|
|
toml = "0.5.10"
|
|
tracing = "0.1.37"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|