-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (38 loc) · 1.81 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "totp-uefi"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
uefi = { version = "0.24.0", features = ["alloc"] }
uefi-services = "0.21.0"
[dependencies.totp-rs]
version = "5.3.0"
path = "totp-rs-5.3.0"
features = ["zeroize"]
[dependencies.chrono]
version = "0.4.31"
features = []
default-features = false
[patch.crates-io.base32]
version = "0.4.0"
path = "base32-0.4.0"
[patch.crates-io.sha1]
version = "0.10.6"
path = "sha1-0.10.6"
[patch.crates-io.sha2]
version = "0.10.8"
path = "sha2-0.10.8"
# uefi = { git = "https://github.com/rust-osdev/uefi-rs", tag = "uefi-v0.16.0", version = "0.16.0" }
# uefi-services = { git = "https://github.com/rust-osdev/uefi-rs", tag = "uefi-services-v0.13.0", version = "0.13.0" }
# [patch.crates-io]
# log = {git = "https://github.com/rust-lang/log", tag = "0.4.17", version = "0.4.17"}
# cfg-if = {git = "https://github.com/alexcrichton/cfg-if", tag = "1.0.0", version = "1.0.0"}
# bit_field = {git = "https://github.com/phil-opp/rust-bit-field", tag = "v0.10.1", version = "0.10.1"}
# bitflags = {git = "https://github.com/bitflags/bitflags", tag = "1.3.2", version = "1.3.2"}
# proc-macro2 = {git = "https://github.com/dtolnay/proc-macro2", tag = "1.0.39", version = "1.0.39"}
# syn = {git = "https://github.com/dtolnay/syn", tag = "1.0.95", version = "1.0.95"}
# quote = {git = "https://github.com/dtolnay/quote", tag = "1.0.18", version = "1.0.18"}
# unicode-xid = {git = "https://github.com/unicode-rs/unicode-xid", rev = "5d8742b", version = "0.2.3"}
# ucs2 = {git = "https://github.com/GabrielMajeri/ucs2-rs", rev = "ad816f4", version = "0.3.2"}
# uefi-macros = {git = "https://github.com/rust-osdev/uefi-rs", tag = "uefi-macros-v0.7.0", package = "uefi-macros", version = "0.7.0"}