-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 945 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 945 Bytes
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 = [
"crates/git-metadata",
"crates/git-ledger",
"crates/git-chain",
"crates/git-store",
]
[workspace.package]
edition = "2024"
publish = true
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
[workspace.dependencies]
clap = { version = "4.5.60", features = ["derive"] }
clap_mangen = "0.2.31"
criterion = { version = "0.5", features = ["html_reports"] }
thiserror = { version = "2.0.18" }
git2 = { version = "0.20.4" }
gix = { version = "0.81.0" }
proptest = { version = "1" }
globset = { version = "0.4.18" }
tempfile = { version = "3" }
git2_credentials = { version = "0.15.0", features = ["ui4dialoguer"] }
git-metadata = { path = "crates/git-metadata" }
git-ledger = { path = "crates/git-ledger" }
git-chain = { path = "crates/git-chain" }
git-store = { path = "crates/git-store" }