-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.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 <danieleades@hotmail.com>"]
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.75.0"
[lib]
name = "monzo"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
reqwest = { version = "0.12.9", features = ["json"] }
chrono = { version = "0.4.38", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
rand = "0.8.4"
serde_json = "1.0.133"
erased-serde = "0.4.5"
thiserror = "2.0.3"
tracing = "0.1.41"
[dev-dependencies]
clap = { version = "4.5.21", features = ["derive", "env"] }
doc-comment = "0.3.3"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.41"