-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 726 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "dearrow-cli"
version = "4.3.0"
edition = "2021"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
strip = "symbols"
[dependencies]
clap = { version = "4.5.21", features = ["derive", "cargo"] }
dearrow-browser-api = { version = "1.14.0", features = ["string"], registry = "mschae23" }
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "clock"] }
csv = "1.3.1"
termsize = "0.1.9"
tabled = { version = "0.19.0" }
anyhow = "1.0.93"