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
42 lines (34 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 1.28 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
36
37
38
39
40
41
42
lints.workspace = true
[package]
name = "gix-attributes"
version = "0.22.5"
repository = "https://github.com/Byron/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project dealing .gitattributes files"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
[lib]
doctest = false
[features]
## Data structures implement `serde::Serialize` and `serde::Deserialize`.
serde = ["dep:serde", "bstr/serde", "gix-glob/serde", "kstring/serde"]
[dependencies]
gix-path = { version = "^0.10.11", path = "../gix-path" }
gix-quote = { version = "^0.4.12", path = "../gix-quote" }
gix-glob = { version = "^0.16.5", path = "../gix-glob" }
gix-trace = { version = "^0.1.10", path = "../gix-trace" }
bstr = { version = "1.3.0", default-features = false, features = ["std", "unicode"] }
smallvec = "1.10.0"
kstring = "2.0.0"
unicode-bom = { version = "2.0.3" }
thiserror = "1.0.26"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
document-features = { version = "0.2.1", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
gix-fs = { path = "../gix-fs" }
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]