-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 844 Bytes
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
[package]
authors = ["The Knurling-rs developers"]
categories = ["command-line-utilities", "development-tools", "embedded"]
description = "Flips the memory layout of embedded programs to protect against stack overflows"
edition = "2021"
keywords = ["arm", "cortex-m", "stack-protection"]
license = "MIT OR Apache-2.0"
name = "flip-link"
repository = "https://github.com/knurling-rs/flip-link"
version = "0.1.12"
readme = "README.md"
[dependencies]
env_logger = { version = "0.11", default-features = false }
evalexpr = "12"
getrandom = "0.2"
log = "0.4"
object = { version = "0.35", default-features = false, features = ["read_core", "elf", "std"] }
[dev-dependencies]
assert_cmd = "2.0"
rstest = { version = "0.19", default-features = false }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"