-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
70 lines (61 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
workspace.members = ["crates/atom", "crates/config", "crates/nixec"]
[package]
edition = "2021"
name = "eka"
version = "0.1.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[dependencies]
anyhow.workspace = true
clap.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-appender.workspace = true
tracing-error.workspace = true
tracing-subscriber.workspace = true
atom = { path = "crates/atom" }
gix = { workspace = true, optional = true }
[workspace.dependencies]
anyhow = "^1"
serde_json = "^1"
tempfile = "^3.13"
thiserror = "^1"
tracing = "^0.1"
tracing-appender = "^0.2"
tracing-error = "^0.2"
clap = { version = "^4", features = ["derive"] }
insta = { version = "^1", features = ["yaml"] }
prodash = { version = "^29", features = [
"render-line",
"render-line-crossterm",
"render-line-autoconfigure",
] }
semver = { version = "^1", features = ["serde"] }
serde = { version = "^1", features = ["derive"] }
tokio = { version = "^1", features = ["full"] }
toml_edit = { version = "^0.22", features = ["serde"] }
tracing-subscriber = { version = "^0.3", features = ["env-filter", "json"] }
url = { version = "^2", features = ["serde"] }
gix = { version = "^0.66", default-features = false, features = [
"blocking-http-transport-reqwest-rust-tls",
"progress-tree",
"max-performance-safe",
# FIXME: investigating fix for inappropriate tracing behavior upstream:
# https://github.com/Byron/gitoxide/issues/1615
# "tracing",
"blob-diff",
"revision",
] }
[features]
default = ["stores"]
git = ["gix", "atom/git"]
stores = ["git"]
[patch.crates-io]
gix = { git = "https://github.com/nrdxp/gitoxide", tag = "gix-v0.66.0-eka" }
gix-url = { git = "https://github.com/nrdxp/gitoxide", tag = "gix-v0.66.0-eka" }