forked from GitoxideLabs/gitoxide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 917 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
lints.workspace = true
[package]
name = "gix-submodule"
version = "0.19.1"
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 = "2021"
rust-version = "1.70"
include = ["src/**/*", "LICENSE-*"]
[lib]
doctest = false
[dependencies]
gix-pathspec = { version = "^0.11.0", path = "../gix-pathspec" }
gix-refspec = { version = "^0.30.1", path = "../gix-refspec" }
gix-config = { version = "^0.45.1", path = "../gix-config" }
gix-path = { version = "^0.10.18", path = "../gix-path" }
gix-url = { version = "^0.31.0", path = "../gix-url" }
bstr = { version = "1.12.0", default-features = false }
thiserror = "2.0.0"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-features = { path = "../gix-features", features = ["walkdir"] }