-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 1.17 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
lints.workspace = true
[package]
name = "gix-submodule"
version = "0.30.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing git submodules"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2024"
rust-version = "1.85"
include = ["/src/**/*", "/LICENSE-*"]
[lib]
doctest = false
[features]
## Enable support for the SHA-1 hash by forwarding the feature to dependencies.
sha1 = ["gix-refspec/sha1"]
## Enable support for the SHA-256 hash by forwarding the feature to dependencies.
sha256 = ["gix-refspec/sha256"]
[dependencies]
gix-pathspec = { version = "^0.18.0", path = "../gix-pathspec" }
gix-refspec = { version = "^0.41.0", path = "../gix-refspec" }
gix-config = { version = "^0.56.0", path = "../gix-config" }
gix-path = { version = "^0.12.0", path = "../gix-path" }
gix-url = { version = "^0.36.0", path = "../gix-url" }
bstr = { version = "1.12.0", default-features = false }
thiserror = "2.0.18"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-features = { path = "../gix-features", features = ["walkdir"] }
[package.metadata.docs.rs]
features = ["sha1"]