-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 838 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 838 Bytes
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
29
[package]
name = "drill-press"
description = "A cross platform library for listing and manipulating holes in sparse files."
documentation = "https://docs.rs/drill-press/"
repository = "https://github.com/aj-bagwell/drill-press"
license = "MIT OR Apache-2.0"
version = "0.1.2"
authors = ["Nathan McCarty <nathan@mccarty.io>", "AJ Bagwell <aj.bagwell@gmail.com>"]
edition = "2021"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "0.1.10"
thiserror = "1.0.11"
[target.'cfg(unix)'.dependencies]
libc = "0.2.67"
errno = "0.2.4"
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3.8", features = ["ioapiset", "winioctl", "fileapi"]}
[dev-dependencies]
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rand = "0.7.3"
tempfile = "3.3.0"