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
35 lines (30 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1.21 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
lints.workspace = true
[package]
name = "gix-dir"
version = "0.20.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing with directory walks"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
rust-version = "1.82"
[lib]
doctest = false
test = false
[dependencies]
gix-trace = { version = "^0.1.17", path = "../gix-trace" }
gix-index = { version = "^0.46.0", path = "../gix-index" }
gix-discover = { version = "^0.46.0", path = "../gix-discover" }
gix-fs = { version = "^0.19.0", path = "../gix-fs" }
gix-path = { version = "^0.11.0", path = "../gix-path" }
gix-pathspec = { version = "^0.15.0", path = "../gix-pathspec" }
gix-worktree = { version = "^0.47.0", path = "../gix-worktree", default-features = false }
gix-object = { version = "^0.55.0", path = "../gix-object" }
gix-ignore = { version = "^0.19.0", path = "../gix-ignore" }
gix-utils = { version = "^0.3.1", path = "../gix-utils", features = ["bstr"] }
bstr = { version = "1.12.0", default-features = false }
thiserror = "2.0.18"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-fs = { path = "../gix-fs" }
pretty_assertions = "1.4.0"