-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 1.26 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
[package]
name = "passauf"
version = "0.1.0"
edition = "2021"
[dependencies]
bincode = { version = "1.3", optional = true }
serialport = { version = "4.7", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
bitflags = { version = "2.8", optional = true }
simplelog = { version = "0.12", features = ["paris"] }
strum = { version = "0.26", features = ["derive"] }
asn1 = { version = "0.20", optional = true }
rand = "0.9"
# these are pending cipher/digest release
retail-mac = "0.1.0-pre.0"
sha1 = "0.11.0-pre.4"
des = "0.9.0-pre.2"
cbc = { version = "0.2.0-pre.2", features = ["alloc"] }
# end of packages pending cipher/digest release
iso7816-tlv = "0.4.4"
clap = { version = "4.5", features = ["derive"], optional = true }
[features]
# to make development easier, all features are on by default. this will change later.
default = ["proxmark", "pcsc", "cli", "pace"]
# Proxmark support
proxmark = ["dep:serialport", "dep:serde", "serde/derive", "dep:bincode", "dep:bitflags"]
# PCSC support. Empty for now.
pcsc = []
# cli tool inclusion
cli = ["dep:clap", "clap/derive"]
# PACE support. Empty for now but we'll surely need some libs for it, right?
pace = ["dep:asn1"]
# [patch.crates-io]
# retail-mac = { git = 'https://github.com/RustCrypto/MACs.git' }