windows_shared_memory 0.1.5

Windows IPC library using shared memory. Supports 32-bit/64-bit cross-process communication
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "windows_shared_memory"
version = "0.1.5"
edition = "2024"
authors = ["gembleman"]
description = "Windows IPC library using shared memory. Supports 32-bit/64-bit cross-process communication"
repository = "https://github.com/gembleman/windows_shared_memory.git"
license = "MIT"
keywords = ["windows", "shared-memory", "ipc"]
categories = ["os::windows-apis", "memory-management"]

[dependencies]
windows = { version = "0.62", features = [
    "Win32_System_Threading",
    "Win32_System_Memory",
    "Win32_Security",
] }