15 lines
403 B
TOML
15 lines
403 B
TOML
[package]
|
|
name = "shared"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default-features = []
|
|
trng = ["esp-hal"]
|
|
full-rand = [ 'rand' ]
|
|
|
|
[dependencies]
|
|
nutype = { version = "0.5.0", default-features = false }
|
|
esp-hal = { version = "0.19.0", features = ["esp32c6", "embedded-hal"], optional = true }
|
|
rand = { version = "0.8.5", features = ["getrandom", "small_rng", "std", "std_rng"], optional = true }
|