-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (31 loc) · 992 Bytes
/
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
[package]
name = "monzo-lib"
version = "0.4.5"
authors = ["Daniel Eades <[email protected]>"]
edition = "2021"
description = "async Monzo client in pure rust."
readme = "README.md"
keywords = ["monzo", "mondo", "async", "client"]
categories = ["api-bindings", "asynchronous"]
homepage = "https://github.com/danieleades/monzo-lib"
repository = "https://github.com/danieleades/monzo-lib"
license = "Apache-2.0"
rust-version = "1.70.0"
[lib]
name = "monzo"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
reqwest = { version = "0.12.5", features = ["json"] }
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.209", features = ["derive"] }
rand = "0.8.4"
serde_json = "1.0.127"
erased-serde = "0.4.5"
thiserror = "1.0.61"
tracing = "0.1.29"
[dev-dependencies]
clap = { version = "4.5.8", features = ["derive", "env"] }
doc-comment = "0.3.3"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.29"