[package] name = "projectr" version = "0.2.1" edition = "2021" authors = ["Toby Vincent "] homepage = "https://sr.ht/~tobyvin/tmuxr" repository = "https://git.sr.ht/~tobyvin/projectr" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.66" clap = { version = "4.0.18", features = ["derive", "env"] } figment = { version = "0.10.8", features = ["toml", "env", "test"] } git2 = { version = "0.15.0", default-features = false, optional = true, features = [ "vendored-libgit2", ] } ignore = "0.4.18" pretty_assertions = "1.3.0" serde = { version = "1.0.147", features = ["derive"] } serde_with = "2.1.0" thiserror = "1.0.37" tokio = { version = "1.23.0", features = ["full"] } tracing = { version = "0.1.37", features = ["attributes"] } tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } [dev-dependencies] tempfile = "3.3.0" toml = "0.5.9" [features] default = ["git"] git = ["dep:git2"]