21 lines
654 B
TOML
21 lines
654 B
TOML
[package]
|
|
name = "i3toolwait"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
byteorder = "1.5.0"
|
|
clap = { version = "4.4.6", features = ["derive"] }
|
|
env_logger = "0.10.0"
|
|
futures = "0.3.28"
|
|
log = "0.4.20"
|
|
rust_lisp = { git = "https://github.com/brundonsmith/rust_lisp.git", branch = "arc-feature-addition", features = ["arc"] }
|
|
serde = { version = "1.0.188", features = ["std", "derive", "serde_derive"] }
|
|
serde_json = "1.0.107"
|
|
serde_yaml = "0.9.25"
|
|
strfmt = "0.2.4"
|
|
tokio = { version = "1.33.0", features = ["full"] }
|
|
xdg = "2.5.2"
|