File: Cargo.toml.orig

package info (click to toggle)
rust-memmap 0.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 232 kB
  • sloc: sh: 53; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 729 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "memmap"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.7.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/danburkert/memmap-rs"
documentation = "https://docs.rs/memmap"
description = "Cross-platform Rust API for memory-mapped file IO"
keywords = ["mmap", "memory-map", "io", "file"]

[badges]
travis-ci = { repository = "danburkert/memmap-rs" }
appveyor = { repository = "danburkert/mmap" }

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["basetsd", "handleapi", "memoryapi", "minwindef", "std", "sysinfoapi"] }

[dev-dependencies]
tempdir = "0.3"