-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
23 lines (21 loc) · 828 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[workspace]
members = ["winmmf", "winmmf-ffi"]
resolver = "2"
[workspace.package]
authors = ["Riven Skaye <riven@tae.moe>"]
categories = ["filesystem", "memory-management", "os::windows-apis"]
description = "Crates to use Windows' Memory Mapped Files with Rust. Now including FFI!"
edition = "2021"
homepage = "https://skaye.blog/winmmf/overview"
keywords = ["ipc", "shared-mem", "shmem", "windows", "winmmf"]
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/RivenSkaye/WinMMF-rs"
version = "0.3.0"
[profile.minimize]
codegen-units = 1
inherits = "release"
lto = "fat"
opt-level = 2
panic = "unwind"
strip = "debuginfo"