forked from rbranson/rust-mmap
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
28 lines (24 loc) · 810 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
24
25
26
27
28
[package]
name = "mmap-fixed"
version = "0.1.3"
authors = [
"Khang <[email protected]>",
"Elliott Linder <[email protected]>",
"Rick Branson <[email protected]>",
"The Rust Project Developers"
]
license = "MIT"
readme = "README.md"
description = """
A library for dealing with memory-mapped I/O
This is a fork of a fork of the original rust-mmap with updated dependencies and a
fix for the Windows version. This exists only because there are no other
alternative crates for `MAP_FIXED` allocations.
"""
repository = "https://github.com/khang06/rust-mmap-fixed-fixed"
[target."cfg(unix)".dependencies]
libc = "0.2"
[target."cfg(windows)".dependencies]
winapi = { version = "0.3.9", features = ["memoryapi", "sysinfoapi", "handleapi", "winerror"] }
[dev-dependencies]
tempdir = "0.3"