File: Cargo.toml.orig

package info (click to toggle)
rust-filebuffer 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: makefile: 2
file content (22 lines) | stat: -rw-r--r-- 681 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "filebuffer"
version = "1.0.1"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
license = "Apache-2.0"
readme = "readme.md"
keywords = ["non-blocking", "mmap", "file", "input", "prefetch"]
categories = ["asynchronous", "filesystem", "memory-management"]
description = "Fast and simple file reading"
repository = "https://github.com/ruuda/filebuffer"
documentation = "https://docs.rs/filebuffer"
edition = "2018"

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

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

[dev-dependencies]
sha2 = "0.10"
hex = "0.4"