17 lines
369 B
TOML
17 lines
369 B
TOML
[package]
|
|
name = "winreg"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["alloc", "nightly"]
|
|
nightly = []
|
|
alloc = []
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
bytemuck = {version = "1.12.3", features = ["derive", "min_const_generics"]}
|
|
bitfield = "0.14.0"
|
|
bitflags = "1.3.2" |