forked from ProgramCrafter/totp-uefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (41 loc) · 2.03 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
48
49
50
51
52
[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 = "6.0.0-patch-nostd-pc"
path = "totp-rs-6.0.0-patch-nostd-pc"
features = ["zeroize"]
[dependencies.chrono]
version = "0.4.31"
features = []
default-features = false
[patch.crates-io.base32]
version = "1.0.0-patch-nostd-pc"
path = "base32-1.0.0-patch-nostd-pc"
[patch.crates-io.sha1]
version = "1.0.0-patch-nostd-pc"
path = "sha1-1.0.0-patch-nostd-pc"
[patch.crates-io.sha2]
version = "1.0.0-patch-nostd-pc"
path = "sha2-1.0.0-patch-nostd-pc"
[patch.crates-io.crypto-common]
version = "1.0.0-patch-nostd-pc"
path = "crypto-common-1.0.0-patch-nostd-pc"
# 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"}