[package] name = "coingecko-rs" version = "1.0.1" authors = ["ecklf "] description = "This crate has moved to https://crates.io/crates/coingecko and will be deleted in the foreseeable future" documentation = "https://docs.rs/coingecko-rs" repository = "https://github.com/ecklf/coingecko-rs" keywords = ["coingecko", "api"] edition = "2021" readme = "README.md" license = "MIT" include = ["src/**/*", "LICENSE.md", "README.md", "CHANGELOG.md"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [badges] maintenance = { status = "deprecated" } [dependencies] tokio = { version = "1.6.0", features = ["full"] } reqwest = { version = "0.11.3", features = ["json"] } serde = { version = "1.0.126", features = ["derive"] } serde_json = "1.0.64" chrono = "0.4.19" [dev-dependencies] tokio-test = "0.4.2"