[package] name = "smem" description = "A cross-platform thin wrapper for shared memory" version = "0.1.0" edition = "2021" authors = ["Shun Suzuki "] license = "MIT" readme = "README.md" documentation = "https://docs.rs/smem" repository = "https://github.com/shinolab/smem-rs" exclude = [".github/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [target.'cfg(unix)'.dependencies] nix = "0.25.0" [target.'cfg(windows)'.dependencies] windows = {version = "0.43.0", features = ["Win32_System_Memory", "Win32_Foundation", "Win32_Security"]} [dependencies] anyhow = "1.0.66" thiserror = "1.0.37"