[package]
edition = "2024"
name = "atomic-matrix"
version = "0.3.2"
authors = ["Dottsss"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lock-free, high end allocator primitive for high-performance IPC."
readme = "README.md"
keywords = [
"allocator",
"lock-free",
"ipc",
"shared-memory",
"tlsf",
]
categories = [
"memory-management",
"concurrency",
"os",
]
license = "Apache-2.0"
repository = "https://github.com/CodenamePhantom/AtomicMatrix"
[features]
default = []
server = ["libc"]
[lib]
name = "atomic_matrix"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.memmap2]
version = "0.9.10"
[dependencies.uuid]
version = "1.23.0"
features = [
"serde",
"v4",
]