-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 728 Bytes
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
[package]
name = "sys-mount"
version = "3.1.0"
description = "High level FFI binding around the sys mount & umount2 calls"
repository = "https://github.com/pop-os/sys-mount"
authors = ["Michael Aaron Murphy <michael@mmurphy.dev>"]
license = "MIT OR Apache-2.0"
keywords = ["linux", "sys", "mount", "umount"]
categories = ["external-ffi-bindings", "filesystem", "os::unix-apis"]
edition = "2021"
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
bitflags = "2.4.1"
libc = "0.2.139"
loopdev = { package = "loopdev-3", version = "0.5.0", optional = true }
smart-default = "0.7.1"
thiserror = "1.0.38"
tracing = "0.1.37"
[dev-dependencies]
clap = "4.1.4"
[features]
default = ["loop"]
loop = ["loopdev"]