-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 895 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
30
[package]
name = "portier"
version = "0.2.0"
edition = "2021"
authors = ["The Portier project contributors"]
description = "Portier client for Rust"
repository = "https://github.com/portier/portier-rs"
license = "MIT"
rust-version = "1.63.0"
[features]
default = ["simple-store"]
simple-store = ["tokio", "hyper", "hyper-tls"]
[dependencies]
base64 = "0.21.0"
bytes = "1.0.1"
hyper = { version = "0.14.9", optional = true, features = ["http1", "http2", "client"] }
hyper-tls = { version = "0.5.0", optional = true }
ring = "0.17.5"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
thiserror = "1.0.25"
tokio = { version = "1.8.4", optional = true, features = ["rt", "sync"] }
url = { version = "2.2.2", features = ["serde"] }
[dev-dependencies]
log = "0.4.14"
rocket = "= 0.5.0-rc.4"
tokio = { version = "1.8.4", features = ["io-util", "io-std", "macros", "rt"] }