-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Cargo.toml
30 lines (26 loc) · 969 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
[package]
name = "gptman"
version = "1.1.2"
authors = ["Cecile Tonglet <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.63"
description = "Pure Rust library to read and modify GUID partition tables"
repository = "https://github.com/rust-disk-partition-management/gptman"
homepage = "https://github.com/rust-disk-partition-management/gptman"
documentation = "https://docs.rs/gptman"
readme = "README.md"
include = ["src/**/*.rs", "tests/fixtures/*.img", "README.md", "LICENSE.Apache-2.0", "LICENSE.MIT"]
keywords = ["gpt", "partition", "table", "filesystem", "disk"]
categories = ["filesystem"]
[lib]
name = "gptman"
[dependencies]
bincode = "1.3.1"
serde = { version = "1.0.116", features = ["derive"] }
crc = "3.0.0"
thiserror = "1.0"
[features]
default = [ "nix" ]
[target.'cfg(target_os = "linux")'.dependencies]
nix = { version = ">= 0.24, < 0.28", default-features = false, features = ["ioctl"], optional = true }