[package]
edition = "2024"
name = "orbit-rs"
version = "0.1.0"
authors = ["ilker Arabaci <iadeveloper@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fleet-aware shared-memory rings over POSIX shared memory."
documentation = "https://docs.rs/orbit-rs"
readme = "README.md"
keywords = [
"fleet",
"atomic",
"orbital",
"shm",
"distributed",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iadev09/orbit"
[lib]
name = "orbit_rs"
path = "src/lib.rs"
[[test]]
name = "cache"
path = "tests/cache.rs"
[[test]]
name = "fleet_heartbeat"
path = "tests/fleet_heartbeat.rs"
[[test]]
name = "ring_cursor"
path = "tests/ring_cursor.rs"
[[test]]
name = "shm_cross_process"
path = "tests/shm_cross_process.rs"
[[test]]
name = "shm_event"
path = "tests/shm_event.rs"
[[test]]
name = "shm_fleet"
path = "tests/shm_fleet.rs"
[[test]]
name = "shm_ring"
path = "tests/shm_ring.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.bytemuck]
version = "1.23"
features = ["derive"]
[dependencies.bytes]
version = "1.11"
[dependencies.dashmap]
version = "6.1"
[dependencies.netid64]
version = "0.1.1"
[dependencies.tracing]
version = "0.1.44"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dev-dependencies.nix]
version = "0.31"
features = [
"process",
"signal",
"user",
"fs",
]