[package] name = "discord_api" description = "Interact with the Discord API from your shell" license = "MIT" readme = "README.md" repository = "https://github.com/jos-b/discord_api" version = "0.2.3" keywords = ["cli", "discord", "shell", "tool", "library"] categories = ["command-line-interface", "command-line-utilities", "api-bindings", "asynchronous"] authors = ["Joe Banks "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = "3.0.0-beta.1" reqwest = { version = "0.10.4", features = ["json"] } tokio = { version = "0.2", features = ["macros"] } serde = { version = "1.0.110", features = ["derive"] } serde_json = "1.0" colored = "1.9" log = "0.4.8" simple_logger = "1.6.0" [[bin]] name = "discord" path = "bin/main.rs" [lib] name = "discord_api" path = "lib/lib.rs"