[package] name = "phab-lib" version = "0.3.1" authors = ["Sendy Halim "] edition = "2018" description = """\ CLI utility client for phabricator (https://www.phacility.com/phabricator) """ readme = "../readme.md" homepage = "https://github.com/sendyhalim/phab" repository = "https://github.com/sendyhalim/phab" keywords = ["phabricator", "developer-tools"] categories = ["command-line-utilities"] license-file = "../license" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } reqwest = { version = "0.11", features = ["json", "rustls-tls", "native-tls"] } tokio = { version = "1.0", features = ["full"] } futures = { version = "0.3" } anyhow = { version = "1.0" } thiserror = { version = "1.0" } log = { version = "0.4.8" } fake = { version = "2.4", features = ["derive", "chrono"] } rand = { version = "0.8" } slugify = { version = "0.1.0" }