1
1
mirror of https://github.com/Byron/gitoxide synced 2025-10-06 01:52:40 +02:00
Files
gitoxide/gix-utils/Cargo.toml
Sebastian Thiel 5f7f80570e bump all prior pratch levels to majors
That way breakage upon release can be avoided, for sure.
2025-04-26 09:34:05 +02:00

24 lines
628 B
TOML

lints.workspace = true
[package]
name = "gix-utils"
version = "0.3.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate with `gitoxide` utilities that don't need feature toggles"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
rust-version = "1.70"
include = ["src/**/*", "LICENSE-*"]
[lib]
doctest = true
[features]
bstr = ["dep:bstr"]
[dependencies]
fastrand = "2.0.0"
bstr = { version = "1.12.0", default-features = false, features = ["std"], optional = true }
unicode-normalization = { version = "0.1.19", default-features = false }