[[bench]]
harness = false
name = "latency"
path = "benches/latency.rs"
[dependencies.libc]
version = "0.2"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[[example]]
name = "ping_pong"
path = "docs/examples/ping_pong.rs"
[lib]
name = "lowlet"
path = "src/lib.rs"
[package]
authors = ["sun4ll"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "memory-management", "os"]
description = "Low-latency IPC library using shared memory and lock-free structures"
documentation = "https://docs.rs/lowlet"
edition = "2021"
exclude = [".git", ".gitignore", "target/"]
homepage = "https://codeberg.org/sun4ll/lowlat-ipc"
keywords = ["ipc", "low-latency", "shared-memory", "lock-free", "trading"]
license = "MIT"
name = "lowlet"
readme = "README.md"
repository = "https://codeberg.org/sun4ll/lowlat-ipc"
version = "0.1.2"
[profile.bench]
codegen-units = 1
lto = true
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true
[[test]]
name = "features"
path = "tests/features.rs"
[[test]]
name = "ipc"
path = "tests/ipc.rs"
[[test]]
name = "units"
path = "tests/units.rs"