eb29b97f9b
I think the implementation of the positional.rs is good
20 lines
364 B
TOML
20 lines
364 B
TOML
[package]
|
|
name = "rnavp"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
|
|
[features]
|
|
default= ["embassy"]
|
|
std = []
|
|
embassy = ["core_full"]
|
|
core = []
|
|
core_full = ["core_communication", "core_logic"]
|
|
core_communication = ["core"]
|
|
core_logic = ["core"]
|
|
host = ["std", "core_full"]
|
|
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.228", features = ["derive"], default-features = false }
|