forked from elast0ny/shared_memory
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "shared_memory"
description = "A user friendly crate that allows you to share memory between processes"
version = "0.12.5"
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
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 = []
tracing = ["dep:tracing"]
[dependencies]
tracing = { version = "0.1.41", optional = true }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", default-features = false, features = ["fs", "mman"] }
libc = "0.2"
[target.'cfg(windows)'.dependencies]
win-sys = "0.3"
rand = "0.8"
winapi = { version = "0.3", features = ["winnt", "winbase", "winerror", "ntdef", "synchapi", "handleapi"] }
[dev-dependencies]
clap = { version = "4", features = ["derive"] }