-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
28 lines (23 loc) · 856 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 = "positioned-io"
version = "0.3.4" # remember to update html_root_url, changelog and readme example
description = "Reading and writing at an offset"
keywords = ["read", "offset", "pread", "pwrite", "endian"]
categories = ["filesystem", "os"]
license = "MIT"
repository = "https://github.com/vasi/positioned-io"
readme = "README.md"
rust-version = "1.71"
edition = "2021"
[features]
default = ["byteorder"]
[dependencies]
byteorder = { version = "1.2", optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["basetsd", "minwindef", "handleapi", "fileapi", "sysinfoapi", "memoryapi", "winnt"] }
[dev-dependencies]
quickcheck = "1"
tempfile = "3.0"