aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: aa96ab01c926e4b16e088084e85cf05f7043693e (plain)
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
# Copyright 2019 Robin Krahl <robin.krahl@ireas.org>
# SPDX-License-Identifier: CC0-1.0

[package]
name = "ntw"
version = "0.1.0"
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
description = "experimental firmware for the Nitrokey Pro"
readme = "README.md"
edition = "2018"

[dependencies]
cortex-m = "0.5.8"
cortex-m-rt = "0.6.7"
embedded-hal = "0.2.2"
panic-halt = "0.2.0"

[dependencies.hal]
package = "stm32f1xx-hal"
version = "0.1.1"
features = ["stm32f103", "rt"]

[profile.release]
codegen-units = 1
debug = true
lto = true