-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
27 lines (25 loc) · 845 Bytes
/
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
[package]
name = "nt-hive"
version = "0.3.0"
authors = ["Colin Finck <[email protected]>"]
description = "Access keys, values, and data stored in Windows hive (registry) files"
homepage = "https://github.com/ColinFinck/nt-hive"
repository = "https://github.com/ColinFinck/nt-hive"
documentation = "https://docs.rs/nt-hive"
readme = "README.md"
edition = "2021"
rust-version = "1.58"
license = "GPL-2.0-or-later"
keywords = ["windows", "nt", "registry", "hive", "regf"]
categories = ["no-std", "os::windows-apis", "parser-implementations"]
[dependencies]
bitflags = "2.4.0"
byteorder = { version = "1.4.3", default-features = false }
displaydoc = { version = "0.2.4", default-features = false }
enumn = "0.1.11"
memoffset = "0.9.0"
zerocopy = { version = "0.7.1", features = ["derive"] }
[features]
default = ["std"]
alloc = []
std = ["alloc"]