1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-06 01:52:40 +02:00
Files
gitoxide/gix-negotiate/Cargo.toml

32 lines
928 B
TOML

lints.workspace = true
[package]
name = "gix-negotiate"
version = "0.21.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project implementing negotiation algorithms"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
rust-version = "1.70"
include = ["src/**/*", "LICENSE-*"]
[lib]
doctest = false
test = false
[dependencies]
gix-hash = { version = "^0.19.0", path = "../gix-hash" }
gix-object = { version = "^0.50.2", path = "../gix-object" }
gix-date = { version = "^0.10.5", path = "../gix-date" }
gix-commitgraph = { version = "^0.29.0", path = "../gix-commitgraph" }
gix-revwalk = { version = "^0.21.0", path = "../gix-revwalk" }
thiserror = "2.0.0"
smallvec = "1.15.1"
bitflags = "2"
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-odb = { path = "../gix-odb" }
gix-ref = { path = "../gix-ref" }