-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
33 lines (30 loc) · 843 Bytes
/
Cargo.toml
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
[package]
name = "gpt"
version = "4.0.0"
description = "A pure-Rust library to work with GPT partition tables."
documentation = "https://docs.rs/gpt"
authors = [
"Chris Ober <obercgit@gmail.com>",
"Chris Holcombe <xfactor973@gmail.com>",
"Luca Bruno <lucab@debian.org>",
"Sören Meier <s@renmeier.ch>",
]
license = "MIT"
repository = "https://github.com/Quyzi/gpt"
edition = "2021"
rust-version = "1.65"
exclude = ["tests/fixtures", "tests/gpt-real-disk.rs"]
[features]
# enable logging via the log crate
log = ["dep:log"]
# enable logging via the tracing crate
tracing = ["dep:tracing"]
[dependencies]
bitflags = "2.0"
crc = "3.0"
log = { version = "0.4.18", optional = true }
tracing = { version = "0.1.30", optional = true }
uuid = { version = "1.3.4", features = ["v4"] }
simple-bytes = "0.2.13"
[dev-dependencies]
tempfile = "3.0"