File: Cargo.toml.orig

package info (click to toggle)
rust-gix-refspec 0.27.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: makefile: 4
file content (27 lines) | stat: -rw-r--r-- 823 bytes parent folder | download
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-refspec"
version = "0.27.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project for parsing and representing refspecs"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*", "README.md"]
rust-version = "1.65"

[lib]
doctest = false

[dependencies]
gix-revision = { version = "^0.31.0", path = "../gix-revision", default-features = false }
gix-validate = { version = "^0.9.2", path = "../gix-validate" }
gix-hash = { version = "^0.15.1", path = "../gix-hash" }

bstr = { version = "1.3.0", default-features = false, features = ["std"] }
thiserror = "2.0.0"
smallvec = "1.9.0"

[dev-dependencies]
gix-testtools = { path = "../tests/tools" }