[package]
edition = "2024"
rust-version = "1.88"
name = "picoem-common"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared primitives for the picoem RP2350/RP2040 emulator workspace: Memory, ClockTree, Pacer, PIO building blocks, threading helpers."
homepage = "https://github.com/0x4D44/picoem"
documentation = "https://docs.rs/picoem-common"
readme = "README.md"
keywords = [
"emulator",
"rp2350",
"rp2040",
"embedded",
"pico",
]
categories = [
"emulators",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0x4D44/picoem"
resolver = "2"
[features]
pio-pad-diag = []
test-hooks = []
[lib]
name = "picoem_common"
path = "src/lib.rs"
[dependencies.tracing]
version = "0.1"
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dependencies.libc]
version = "0.2"
[target.'cfg(all(target_arch = "x86_64", target_os = "windows"))'.dependencies.winapi]
version = "0.3"
features = [
"processthreadsapi",
"winbase",
]
[lints.clippy]
enum_variant_names = "allow"
large_enum_variant = "allow"
needless_range_loop = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unusual_byte_groupings = "allow"