-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 1.03 KB
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
[workspace]
resolver = "3"
members = ["libnpins"]
[workspace.dependencies]
serde_json = { version = "^1.0", features = ["preserve_order"] }
url = "^2.5"
anyhow = "^1.0"
log = "^0.4"
tokio = "^1.0"
[workspace.package]
version = "0.4.0"
edition = "2024"
license = "EUPL-1.2"
[package]
name = "npins"
version.workspace = true
edition.workspace = true
license.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json.workspace = true
url.workspace = true
anyhow.workspace = true
log.workspace = true
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
libnpins = { path = "libnpins" }
# Pin clap because the latest patch has a regression in the help output
clap = { version = "=4.5.36", features = [ "derive", "env" ] }
futures-util = { version = "0.3.31", default-features = false }
crossterm = { version = "0.29", default-features = false }
env_logger = { version = "^0.11.0", features = ["color", "auto-color", "regex"], default-features = false }