[package] name = "iptmnet" version = "1.10.0" edition = "2021" rust-version = "1.64.0" description = "A convenient CLI for the IPTMNet API" readme = "README.md" repository = "https://github.com/AliSajid/iptmnet_client" license = "GPL-3.0-or-later" authors = ["Ali Sajid Imami "] categories = ["command-line-utilities", "science", "web-programming::http-client"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "iptmlib" path = "src/iptmlib/lib.rs" crate-type = ["lib"] [[bin]] name = "iptmnet" path = "src/iptmnet/main.rs" [profile.dev] opt-level = 1 debug = true [profile.release] opt-level = 3 strip = true lto = true codegen-units = 1 [dependencies] clap = { version = "4.1.4", features = ["derive", "env", "string", "unicode", "cargo", "debug", "wrap_help"] } reqwest = { version = "0.11.14", features = ["json"] } serde = { version = "1.0.144", features = ["derive", "serde_derive"] } serde-aux = "4.0.0" serde_json = "1.0.85" tokio = { version = "1.20.3", features = ["full"] }