43 lines
959 B
TOML
43 lines
959 B
TOML
[package]
|
|
name = "shared_memory"
|
|
description = "A user friendly crate that allows you to share memory between processes"
|
|
version = "0.12.4-chuniio"
|
|
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
#Extra fields for crates.io
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/shared_memory"
|
|
repository = "https://github.com/elast0ny/shared_memory-rs"
|
|
keywords = ["shmem", "shared", "memory", "inter-process", "process"]
|
|
categories = [
|
|
"os::unix-apis",
|
|
"os::windows-apis",
|
|
"memory-management",
|
|
"concurrency",
|
|
"asynchronous",
|
|
]
|
|
|
|
exclude = ["ci/*", ".github/*"]
|
|
|
|
[features]
|
|
default = []
|
|
logging = ["log"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0"
|
|
log = { version = "0.4", optional = true }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.23"
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
win-sys = "0.3"
|
|
|
|
[dev-dependencies]
|
|
raw_sync = "0.1"
|
|
clap = {version = "3", features = ["derive"]}
|
|
env_logger = "0"
|