mirror of
https://github.com/trussed-dev/littlefs2.git
synced 2026-06-20 04:16:32 -07:00
Similar to the existing support for multiple heapless versions, this patch also adds support for heapless-bytes 0.3 and 0.4.
25 lines
844 B
TOML
25 lines
844 B
TOML
[package]
|
|
name = "littlefs2-core"
|
|
version = "0.1.0"
|
|
authors = ["The Trussed developers"]
|
|
description = "Core types for the littlefs2 crate"
|
|
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
bitflags = "2.6.0"
|
|
heapless-bytes03 = { package = "heapless-bytes", version = "0.3", optional = true }
|
|
heapless-bytes04 = { package = "heapless-bytes", version = "0.4", optional = true }
|
|
heapless07 = { package = "heapless", version = "0.7", optional = true }
|
|
heapless08 = { package = "heapless", version = "0.8", optional = true }
|
|
serde = { version = "1", default-features = false, features = ["derive"], optional = true }
|
|
|
|
[features]
|
|
heapless-bytes03 = ["dep:heapless-bytes03"]
|
|
heapless-bytes04 = ["dep:heapless-bytes04"]
|
|
heapless07 = ["dep:heapless07"]
|
|
heapless08 = ["dep:heapless08"]
|
|
serde = ["dep:serde"]
|