[package] name = "currency-prices" version = "0.1.2" edition = "2021" authors = ["Adinael Perez"] repository = "https://github.com/wiringbits/currency-prices" description = " A small library to get the cryptocurreny prices" license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] reqwest = { version = "0.11.23", features = ["json"] } serde = { version = "1.0", features = ["derive"] } rust_decimal = {version= "1.33", features = ["serde"]} chrono = {version = "0.4.32", features = ["serde"]} [dev-dependencies] serde_json = "1.0" tokio = { version = "1", features = ["full"] }