-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 826 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 826 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
[package]
name = "fuse-abi"
version = "0.2.0"
authors = ["Martin Kröning <mkroening@posteo.net>"]
edition = "2021"
description = "FUSE device bindings."
repository = "https://github.com/rust-osdev/fuse-abi"
license = "MIT OR Apache-2.0"
keywords = ["fuse", "macfuse", "virtio-fs", "filesystem", "abi"]
categories = ["external-ffi-bindings", "no-std::no-alloc", "os::linux-apis", "os::macos-apis"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
num_enum = { version = "0.7", default-features = false, optional = true }
zerocopy = { version = "0.8", default-features = false, optional = true }
zerocopy-derive = { version = "0.8", optional = true }
[features]
default = []
linux = []
macos = []
num_enum = ["dep:num_enum"]
zerocopy = ["dep:zerocopy", "dep:zerocopy-derive"]