[package] name = "tro" version = "2.10.0" authors = ["Michael Aquilina "] edition = "2018" description = "A Trello API client for the command line" keywords = ["trello"] categories = ["command-line-utilities"] readme = "README.rst" license = "GPL-3.0-only" homepage = "https://www.github.com/MichaelAquilina/tro" repository = "https://www.github.com/MichaelAquilina/tro.git" [lib] name = "trello" test = true path = "src/trello/mod.rs" [[bin]] name = "tro" path = "src/main.rs" [dependencies] dirs = "2.0.2" toml = "0.5.5" reqwest = { version = "0.10.7", features = ["json", "blocking"] } url = "2.1.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" clap = { version = "2.33.0", features = ["color"] } regex = "1.3.1" log = "0.4.8" simplelog = "0.7.4" tempfile = "3.1.0" colored = "2.0.0" rustyline = "~6.1.2" # Pin to 0.11.2 due to bug in 0.11.3 when reading Escape key # see https://github.com/mitsuhiko/console/issues/66 console = "=0.11.2" dialoguer = "0.6" chrono = { version = "0.4", features = ["serde"] } thiserror = "1.0" unicode-width="0.1.8" ctrlc = "3.1.5" [dev-dependencies] mockito = "~0.25.0"