-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (34 loc) · 1.06 KB
/
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
34
35
36
37
38
[package]
name = "rsfdisk"
description = "Safe Rust wrapper around the `util-linux/libfdisk` C library"
version = "0.1.0"
authors = ["Nick Piaddo <[email protected]>"]
license = "Apache-2.0 OR MIT"
rust-version = "1.72"
edition = "2021"
repository = "https://github.com/nickpiaddo/rsfdisk"
homepage = "https://github.com/nickpiaddo/rsfdisk"
documentation = "https://docs.rs/rsfdisk"
readme = "crates-io.md"
keywords = ["fdisk", "libfdisk", "partition", "util-linux", "wrapper"]
categories = ["api-bindings"]
exclude = ["web-snapshots/*", "test_harness/*", "scripts/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embed-doc-image = "0.1.4"
enum-iterator = "2.1.0"
libc = "0.2.153"
libfdisk = { package="rsfdisk-sys", version="0.2.0" }
log = "0.4.21"
num_enum = "0.7.3"
once_cell = "1.19.0"
thiserror = "1.0.57"
typed-builder = "0.20.0"
[dev-dependencies]
env_logger = "0.11.5"
pretty_assertions = "1.4.0"
tempfile = "3.12.0"
terminal_size = "0.4.0"
xz2 = "0.1.7"
[build-dependencies]
pkg-config = "0.3.30"