-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.11 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
# Copyright (C) 2023 Nitrokey GmbH
# SPDX-License-Identifier: CC0-1.0
[package]
name = "se050"
version = "0.0.1"
authors = ["Nitrokey GmbH <info@nitrokey.com>"]
edition = "2021"
repository = "https://github.com/sosthene-nitrokey/se050-generation"
license = "Apache-2.0 OR MIT"
description = "Driver for NXP SE05X"
[dependencies]
aes = { version = "0.8.3", optional = true }
bitflags = "2.3.2"
byteorder = { version = "1", default-features = false }
cmac = { version = "0.7.2", optional = true }
crc16 = "0.4"
delog = "0.1"
embedded-hal = "*"
heapless = "0.7"
hex-literal = "0.4.1"
iso7816 = "0.1.1"
lpc55-hal = { version = "0.3.0", optional = true }
nrf-hal-common = { version = "0.15.0", optional = true }
rand = { version = "0.8.5", optional = true, default-features = false }
[features]
default = ["aes-session"]
log-all = []
log-debug = []
log-info = []
log-warn = []
log-error = []
log-none = []
nrf = ["nrf-hal-common"]
lpc55 = ["lpc55-hal"]
aes-session = ["aes", "cmac", "rand"]
[patch.crates-io]
iso7816 = { git = "https://github.com/sosthene-nitrokey/iso7816.git", rev = "936a815fa1bf9ce99e7baef584099e8353bae45a"}