-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 924 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "ccdata-api"
version = "1.0.0"
edition = "2021"
description = "Wrapper for CoinDesk REST API endpoints (Fomerly CCData REST API)."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rsadykhov/ccdata-api"
repository = "https://github.com/rsadykhov/ccdata-api"
documentation = "https://docs.rs/ccdata-api"
categories = ["api-bindings", "cryptography::cryptocurrencies", "finance"]
exclude = [".env", "commands.md", "notes.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "=0.15.0" # MIT
serde = { version = "1.0.228", features = ["derive"] } # MIT or Apache 2.0
serde_json = "1.0.149" # MIT or Apache 2.0
reqwest = { version = "0.13.2", features = ["json"] } # MIT or Apache 2.0
[dev-dependencies]
tokio = { version = "1.52.1", features=["macros", "rt-multi-thread"] } # MIT
[features]
# default = ["debug"]
debug = []