-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (28 loc) · 1.15 KB
/
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
28
29
30
[package]
name = "uefisettings"
description = "The tool to read/get/extract and write/change/modify BIOS/UEFI settings from Linux terminal."
version = "0.1.4"
edition = "2021"
license = "BSD-3-Clause"
homepage = "https://github.com/linuxboot/uefisettings"
[lib]
name = "uefisettings"
path = "src/lib/lib.rs"
[dependencies]
uefisettings_backend_thrift = { path = "thrift/rust/uefisettings_backend_thrift", version = ">=0.1.0" }
uefisettings_spellings_db_thrift = { path = "thrift/rust/uefisettings_spellings_db_thrift", version = ">=0.1.0" }
anyhow = ">=1.0"
fbthrift = ">=0.0"
clap = { package = "clap", version = ">=3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
log = { version = ">=0.4", features = ["kv_unstable", "kv_unstable_std"] }
serde = { version = ">=1.0", features = ["derive", "rc"]}
serde_json = { version = ">=1.0", features = ["float_roundtrip", "unbounded_depth"] }
nix = { version = ">=0.26", features = ["fs", "ioctl", "mount"] }
tempfile = ">=3.5"
libloading = ">=0.8"
httparse = ">=1.8"
binrw = ">=0.10"
rand = { version = ">=0.8", features = ["small_rng"] }
proc-mounts = ">=0.3"
thiserror = ">=1.0"
env_logger = ">=0.10"