-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 944 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 944 Bytes
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
36
37
[package]
name = "csrf"
version = "0.3.0"
authors = [ "heartsucker <heartsucker@autistici.org>" ]
description = "CSRF protection primitives"
homepage = "https://github.com/heartsucker/rust-csrf"
repository = "https://github.com/heartsucker/rust-csrf"
documentation = "https://docs.rs/csrf"
readme = "README.md"
license = "MIT"
keywords = [ "csrf", "web", "security", "http" ]
categories = [ "web-programming", "authentication", "cryptography" ]
[badges]
travis-ci = { repository = "heartsucker/rust-csrf", branch = "master" }
appveyor = { repository = "heartsucker/rust-csrf", branch = "master", service = "github" }
[lib]
name = "csrf"
path = "./src/lib.rs"
[features]
iron = [ "typemap" ]
[dependencies]
aead = "0.2.0"
aes-gcm = "0.5"
byteorder = "1"
chacha20poly1305 = "0.4.1"
chrono = "0.4"
data-encoding = "2.0.0"
generic-array = "0.12"
hmac = "0.7"
log = "0.3"
rand = "0.3"
sha2 = "0.8"
typemap = { version = "0.3", optional = true }