forked from OSSystems/compress-tools-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 883 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
29
[package]
name = "compress-tools"
version = "0.6.0"
authors = ["Jonathas-Conceicao <[email protected]>"]
description = "Utility functions for compressed and archive files handling"
repository = "https://github.com/OSSystems/compress-tools-rs"
homepage = "https://github.com/OSSystems/compress-tools-rs"
documentation = "https://docs.rs/compress-tools"
keywords = ["compression", "archive"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2018"
build = "src/build.rs"
[badges]
coveralls = { repository = "ossystems/compress-tools-rs" }
[dependencies]
derive_more = { version = "0.99", default-features = false, features = ["display", "from", "error"] }
[dev-dependencies]
tempfile = "3.1"
argh = "0.1"
[target.'cfg(target_os = "windows")'.build-dependencies]
vcpkg = "0.2"
[target.'cfg(not(target_os = "windows"))'.build-dependencies]
pkg-config = "0.3"