File size: 434 Bytes
7932636 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | [package]
name = "synapse-core"
description = "Shared types and calibration logic for the Synapse sensor stack"
version.workspace = true
edition.workspace = true
license.workspace = true
[features]
default = ["std"]
std = ["minicbor/std"]
# no default features = no_std (MCU target)
# The MCU crate depends on synapse-core with default-features = false
[dependencies]
minicbor = { workspace = true }
heapless = { workspace = true }
|