-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.05 KB
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "bitpanda-api"
version = "0.1.0"
authors = ["Christian Visintin <christian.visintin@veeso.dev>"]
edition = "2021"
categories = ["web-programming::http-client"]
description = "Rust client for Bitpanda API"
documentation = "https://docs.rs/bitpanda-api"
homepage = "https://github.com/veeso/bitpanda-api-rs"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["bitpanda", "bitpanda-trades", "bitpanda-api"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/veeso/bitpanda-api-rs"
[dependencies]
async-recursion = "^1"
chrono = { version = "^0.4", features = [ "serde" ] }
lazy-regex = "^2.5"
log = "^0.4"
reqwest = { version = "^0.11", features = [ "json" ] }
rust_decimal = "^1.26"
serde = { version = "^1", features = [ "derive" ] }
serde_json = "^1"
thiserror = "^1.0.0"
[dev-dependencies]
anyhow = "^1"
env_logger = "^0.10"
pretty_assertions = "^1"
rust_decimal_macros = "^1.26"
tokio = { version = "^1.20", features = [ "full" ] }
tracing = "^0.1"
[features]
default = []
no-log = [ "log/max_level_off" ]