-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (25 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
33 lines (25 loc) · 724 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
28
29
30
31
32
33
[workspace.package]
authors = ["Julien Peeters <julien@mountainhacks.org>"]
description = "A minimal library for implementing device drivers on resource-constrained targets"
homepage = "https://github.com/jpeeters/dedrv"
repository = "https://github.com/jpeeters/dedrv"
license = "Apache-2.0 or MIT"
readme = "README.md"
edition = "2021"
version = "0.1.0"
[workspace]
resolver = "2"
members = ["dedrv", "dedrv-macros", "examples/*"]
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
strip = true
[profile.dev]
codegen-units = 1
[workspace.dependencies]
anyhow = "1.0.95"
critical-section = "1.2.0"
googletest = "0.13.0"
thiserror = { version = "2.0.11", default-features = false }
trybuild = "1.0.103"