[package] name = "ticket" version = "0.1.0" authors = ["Michael Gattozzi "] edition = "2018" license = "GPL-3.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0" colored = "1.9" configamajig = { path = "../configamajig" } chrono = "0.4" paw = "1.0" # Pinning a specific version in case they break everything again and mess up semver, # though this won't fix if they break the semver on the core crate. Either way I don't # trust this crate enough to not pin it. rand = "0.7.2" rustyline = "5.0" serde = { version = "1.0", features = ["derive"] } shared = { path = "../shared" } structopt = { version = "0.3", features = ["paw"] } toml = "0.5" uuid = { version = "0.8", features = ["serde", "v1"] } log = "0.4" pretty_env_logger = "0.3" crossterm = "0.14" tui = { version = "0.8", default-features = false, features = ['crossterm'] }