-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
72 lines (59 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
authors = ["Nihal Pasham <[email protected]>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "A platform agnostic I2C driver for Microchip's Crypto Authentication HW (i.e. secure element `ATECC608A`), written in pure Rust."
documentation = "https://docs.rs/Rusty_CryptoAuthLib"
edition = "2018"
homepage = "https://github.com/nihalpasham/Rusty_CryptoAuthLib.git"
keywords = ["ATECC608A", "Microchip-driver", "Security", "Crypto", "Authentication"]
license = "MIT OR Apache-2.0"
name = "Rusty_CryptoAuthLib"
readme = "README.md"
repository = "https://github.com/nihalpasham/Rusty_CryptoAuthLib.git"
version = "1.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
convertto-proc-macro = {path = "./convertto-proc-macro", version = "0.1.0"}
embedded-hal = "0.2.4"
heapless = "0.5.5"
nb = "1.0.0"
postcard = "0.5.0"
[dependencies.defmt]
branch = "main"
git = "https://github.com/knurling-rs/defmt"
[dependencies.serde]
default-features = false
features = ["derive"]
version = "1.0.114"
[features]
default = ["rt", "defmt-default"]
rt = ["nrf52840-hal/rt"]
# default = [
# "defmt-default", # "dependency-a/defmt-trace",
# ]
# do NOT modify these features
defmt-debug = []
defmt-default = []
defmt-error = []
defmt-info = []
defmt-trace = []
defmt-warn = []
[profile.dev]
debug = 2 # default is `true`; not needed if not already overridden
[profile.release]
debug = 2 # default is `false`; using `true` is also OK
[patch.crates-io]
nrf-hal-common = {version = "0.10.0", path = '/Users/Nil/devspace/rust/projects/rustscratchspace/nrf-hal/nrf-hal-common'}
[dev-dependencies]
cortex-m = "0.6.3"
cortex-m-rt = "0.6.12"
cortex-m-semihosting = "0.3.5"
nrf52840-hal = "0.10.0"
nrf52840-mdk = {git = "https://github.com/nihalpasham/nrf52840-mdk-rs"}
panic-halt = "0.2.0"
[dev-dependencies.defmt-rtt]
branch = "main"
git = "https://github.com/knurling-rs/defmt"
[dev-dependencies.panic-probe]
branch = "main"
git = "https://github.com/knurling-rs/probe-run"