aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: fc4ba991b358a309552413443292aa5f57d8fa60 (plain)
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
31
32
33
34
35
[package]
name = "sputnik"
version = "0.3.4"
authors = ["Martin Fischer <martin@push-f.com>"]
license = "MIT"
description = "A lightweight layer on top of hyper to facilitate building web applications."
repository = "https://git.push-f.com/sputnik"
edition = "2018"
categories = ["web-programming::http-server"]
keywords = ["hyper", "web", "cookie", "hmac"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
json = ["serde_json"]

[dependencies]
hyper = "0.13"
cookie = { version = "0.14", features = ["percent-encode"] }
serde = { version = "1.0", features = ["derive"] }
serde_urlencoded = "0.7.0"
base64 = "0.8"
hmac = "0.10"
httpdate = "0.3.2"
mime = "0.3"
rand = "0.7.3"
sha2 = "0.9"
time = "0.2"
thiserror = "1.0"
async-trait = "0.1.42"
serde_json = { version = "1.0.61", optional = true }

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]