]> git.proxmox.com Git - proxmox-backup.git/blame - qemu-io/Cargo.toml
tools::lru_cache: Improve access() and insert() by using HashMap::entry().
[proxmox-backup.git] / qemu-io / Cargo.toml
CommitLineData
8bf7342c
WB
1[package]
2name = "qemu-io"
3version = "0.1.0"
4authors = [
5 "Wolfgang Bumiller <w.bumiller@proxmox.com>",
6]
7edition = "2018"
8
9#[lib]
10#crate-type = ['lib', 'cdylib']
11
12[dependencies]
13failure = "0.1"
14mio = "0.6"
15
16# In this crate 'future' by default means standard-future.
17# The 0.1-futures are exposed under the name 'futures_01'.
18
19[dependencies.futures-preview]
20version = "0.3.0-alpha.15"
21features = ["compat", "io-compat"]
22
23[dependencies.futures_01]
24package = "futures"
25version = "0.1"
26
27[features]
28default = ["standalone"]
29standalone = []