-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (42 loc) · 993 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
36
37
38
39
40
41
42
43
44
45
[workspace.package]
edition = "2021"
version = "0.9.0"
authors = ["Mikhail Katychev <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/mkatychev/darkroom"
[workspace]
members = [
"cli",
"filmreel",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0"
argh = "0.1"
chrono = "0.4"
colored = "2.1"
colored-diff = "0.2"
colored_json = "4.1"
glob = "0.3.1"
http = "1.1.0"
lazy_static = "1.4.0"
log = { version = "0.4", features = ["std"] }
mdcat = "2.1"
paste = "1"
pest = "2.7"
pest_derive = "2.7"
pretty_assertions = "1.4.0"
prettytable-rs = "0.10"
pulldown-cmark ="0.10"
regex = "1.8.3"
reqwest = { version = "0.12", features = ["blocking", "json"] }
rstest = "0.18"
serde = { version = "1.0", features = ["derive"] }
serde-hashkey = { version = "0.4", features = ["ordered-float"] }
serde_json = "1.0"
syntect = "5.2"
url = "2.5"
which = "6"
# overflow broken for latest minus
minus = { version = "3.4.0", features = ["static_output"] }