-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.86 KB
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
lints.workspace = true
[package]
name = "gix-blame"
version = "0.13.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dedicated to implementing a 'blame' algorithm"
authors = ["Christoph Rüßler <[email protected]>", "Sebastian Thiel <[email protected]>"]
edition = "2024"
rust-version = "1.85"
include = ["/src/**/*", "/LICENSE-*"]
[features]
## Enable support for the SHA-1 hash by forwarding the feature to dependencies.
sha1 = ["gix-hash/sha1"]
## Enable support for the SHA-256 hash by forwarding the feature to dependencies.
sha256 = ["gix-hash/sha256"]
[dependencies]
gix-error = { version = "^0.2.3", path = "../gix-error" }
gix-commitgraph = { version = "^0.37.0", path = "../gix-commitgraph" }
gix-revwalk = { version = "^0.31.0", path = "../gix-revwalk" }
gix-trace = { version = "^0.1.19", path = "../gix-trace" }
gix-date = { version = "^0.15.3", path = "../gix-date" }
gix-diff = { version = "^0.63.0", path = "../gix-diff", default-features = false, features = ["blob"] }
gix-object = { version = "^0.60.0", path = "../gix-object" }
gix-hash = { version = "^0.25.0", path = "../gix-hash" }
gix-worktree = { version = "^0.52.0", path = "../gix-worktree", default-features = false, features = ["attributes"] }
gix-traverse = { version = "^0.57.0", path = "../gix-traverse" }
smallvec = "1.15.1"
thiserror = "2.0.18"
[dev-dependencies]
gix-hash = { path = "../gix-hash", features = ["sha1", "sha256"] }
gix-ref = { path = "../gix-ref", features = ["sha1", "sha256"] }
gix-filter = { path = "../gix-filter" }
gix-fs = { path = "../gix-fs" }
gix-index = { path = "../gix-index", features = ["sha1"] }
gix-odb = { path = "../gix-odb", features = ["sha1"] }
gix-testtools = { path = "../tests/tools" }
pretty_assertions = "1.4.0"
[package.metadata.docs.rs]
features = ["sha1"]