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
27 lines (24 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 823 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
lints.workspace = true
[package]
name = "gix-traverse"
version = "0.41.0"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
autotests = false
[lib]
doctest = false
[dependencies]
gix-hash = { version = "^0.14.2", path = "../gix-hash" }
gix-object = { version = "^0.44.0", path = "../gix-object" }
gix-date = { version = "^0.9.0", path = "../gix-date" }
gix-hashtable = { version = "^0.5.2", path = "../gix-hashtable" }
gix-revwalk = { version = "^0.15.0", path = "../gix-revwalk" }
gix-commitgraph = { version = "^0.24.3", path = "../gix-commitgraph" }
smallvec = "1.10.0"
thiserror = "1.0.32"
bitflags = "2"