]> git.sesse.net Git - linux-dallas-multipass/blob - Cargo.toml
When a smartcard error occurs, disconnect to avoid sticky errors.
[linux-dallas-multipass] / Cargo.toml
1 [package]
2 name = "multipass"
3 version = "0.1.0"
4 authors = ["Steinar H. Gunderson <steinar+git@gunderson.no>"]
5 edition = "2018"
6
7 [dependencies]
8 pcsc = "2.4.0"
9 hyper-rustls = "0.21.0"
10 futures-util = "0.3.1"
11 #hyper = { version = "0.13.9", default-features = false }
12 hyper = { version = "0.13.9" }
13 rustls = "0.18"
14 rustls-native-certs = { version = "0.4.0", optional = true }
15 tokio = { version = "0.2", features = ["macros", "tcp", "dns", "io-util"] }
16 tokio-rustls = "0.14.0"
17 webpki = "0.21.0"
18 webpki-roots = { version = "0.20", optional = true }
19 serde_json = "1.0.59"
20 hex = "0.3.1"
21 lazy_static = "1.4.0"
22 percent-encoding = ""
23 simple-error = "0.2.2"
24
25 [[bin]]
26 name = "multipass"
27 path = "multipass.rs"