-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.07 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
38
39
40
41
42
43
44
[package]
name = "collective"
version = "0.7.0"
edition = "2021"
license = "GPL-3.0-only"
repository = "https://github.com/ggwpez/fellowship"
description = "A CLI to automate work around Polkadot collective work reports."
[[bin]]
name = "collective"
path = "src/bin/collective.rs"
[dependencies]
anyhow = "1.0.86"
backtrace = "0.3.73"
chrono = "0.4.38"
clap = { version = "4.5.13", features = ["derive", "cargo"] }
derivative = "2.2.0"
dirs = "5.0.1"
env_logger = "0.11.5"
glob = "0.3.1"
inquire = { version = "0.7.5", features = ["date"] }
log = "0.4.22"
relative-path = "1.9.3"
sailfish = "0.8.3"
schemars = "0.8.21"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122"
serde_repr = "0.1.19"
serde_yaml = "0.9.34"
strum = { version = "0.26", features = ["derive"] }
symlink = "0.1.0"
tt-call = "1.0.9"
url-escape = "0.1.1"
urlencoding = "2.1.3"
valico = { version = "4.0", default-features = false, features = [] }
[dev-dependencies]
assert_cmd = "2.0.15"
assert_fs = "1.1.2"
crossterm = "0.28.1"
futures = "0.3.30"
predicates = "3.1.2"
pretty_assertions = "1.4"