default is no_std heapless

This commit is contained in:
Priec
2026-01-18 12:10:43 +01:00
parent ad9bb78fc8
commit 33002f89a6
3 changed files with 95 additions and 106 deletions

View File

@@ -1,16 +1,17 @@
[package]
name = "tui_orchestrator"
name = "pages-tui"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[features]
default = ["std"]
std = []
alloc = ["hashbrown"]
default = []
std = ["alloc"]
alloc = ["dep:hashbrown"]
sequences = ["alloc"]
[dependencies]
hashbrown = { version = "0.15", optional = true }
hashbrown = { version = "0.15", optional = true, default-features = false, features = ["alloc"] }
heapless = { version = "0.9.2", default-features = false }
[dev-dependencies]