aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f974ccc39224fabef18ca20962a3cc0f7acb7ce1 (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
[package]
name = "sputnik"
version = "0.2.0"
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", "csrf", "hmac"]

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

[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"