-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (47 loc) · 1.18 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
45
46
47
48
49
50
51
[workspace.package]
edition = "2021"
version = "0.9.0"
authors = ["Mikhail Katychev <mkatych@gmail.com>"]
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.2"
colored-diff = "0.2"
colored_json = "4.1"
glob = "0.3.2"
http = "1.2.0"
jql = "8.0"
lazy_static = "1.5.0"
log = { version = "0.4", features = ["std"] }
paste = "1"
pest = "2.7"
pest_derive = "2.7"
pretty_assertions = "1.4.1"
prettytable-rs = "0.10"
pulldown-cmark ="0.12"
pulldown-cmark-mdcat = "2.7.1"
regex = "1.11.1"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "charset", "http2", "macos-system-configuration"] }
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"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"