[package]
edition = "2018"
name = "shared_memory_fork"
version = "0.12.5"
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
build = false
exclude = [
"ci/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A user friendly crate that allows you to share memory between processes"
documentation = "https://docs.rs/shared_memory"
readme = "README.md"
keywords = [
"shmem",
"shared",
"memory",
"inter-process",
"process",
]
categories = [
"os::unix-apis",
"os::windows-apis",
"memory-management",
"concurrency",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/elast0ny/shared_memory-rs"
[features]
default = []
logging = ["log"]
[lib]
name = "shared_memory_fork"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "event"
path = "examples/event.rs"
[[example]]
name = "mutex"
path = "examples/mutex.rs"
[[test]]
name = "general"
path = "tests/general.rs"
[[test]]
name = "posix_semantics"
path = "tests/posix_semantics.rs"
[dependencies.cfg-if]
version = "1.0"
[dependencies.log]
version = "0.4"
optional = true
[dependencies.rand]
version = "0.8"
[dev-dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.env_logger]
version = "0"
[dev-dependencies.raw_sync]
version = "0.1"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
version = "0.26"
features = [
"fs",
"mman",
]
default-features = false
[target."cfg(windows)".dependencies.win-sys]
version = "0.3"