-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.05 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
39
[package]
name = "rsmount"
description = "Safe Rust wrapper around the `util-linux/libmount` C library"
version = "0.1.0"
authors = ["Nick Piaddo <nick.piaddo@protonmail.com>"]
license = "Apache-2.0 OR MIT"
rust-version = "1.72"
edition = "2021"
repository = "https://github.com/nickpiaddo/rsmount"
homepage = "https://github.com/nickpiaddo/rsmount"
documentation = "https://docs.rs/rsmount"
readme = "README.md"
keywords = ["libmount", "mount", "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"
libmount = { package="rsmount-sys", version="0.2.0" }
log = "0.4.21"
num_enum = "0.7.3"
once_cell = "1.19.0"
paste = "1.0.15"
rsblkid = "0.3.1"
thiserror = "1.0.57"
typed-builder = "0.19.1"
[dev-dependencies]
inside-vm = "0.2.0"
pretty_assertions = "1.4.0"
tempfile = "3.10.1"
xz2 = "0.1.7"
[build-dependencies]
pkg-config = "0.3.30"