-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 748 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 748 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
[package]
name = "btrfs-diskformat"
version = "0.5.1"
authors = ["Christopher Tam <ohgodtamit@gmail.com>"]
edition = "2024"
description = "An implementation of the BTRFS disk format."
readme = "README.md"
repository = "https://github.com/GodTamIt/btrfs-diskformat"
license = "BSD-2-Clause"
keywords = ["btrfs", "filesystem", "diskformat"]
categories = ["filesystem", "no-std"]
[features]
default = []
alloc = ["zerocopy/alloc"]
std = ["strum/std", "zerocopy/std"]
[dependencies]
bitflags = "^2.9"
num_enum = { version = "^0.7", default-features = false }
static_assertions = "^1.1.0"
strum = { version = "^0.27", features = ["derive"], default-features = false }
zerocopy = { version = "^0.8", default-features = false }
zerocopy-derive = "^0.8"