-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 833 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "websession"
categories = ["authentication"]
version = "0.12.2"
authors = ["Jeff Olhoeft <[email protected]>", "Ben Stern <[email protected]>"]
keywords = ["login", "security", "session", "web"]
description = "Web Session Support for Rust"
license = "MIT/Apache-2.0"
repository = "https://github.com/jolhoeft/websession.rs/"
edition = "2018"
exclude = ["data/passwd.old"]
[dependencies]
pwhash = "1.0"
uuid = { version = "0.8", features = [ "v4" ] }
libc = "0.2"
fs2 = "0.4"
log = "0.4"
clap = "2.27"
rpassword = "5.0"
digest = "0.9"
sha2 = "0.9"
[dev-dependencies]
tempfile = "3.1"
rand = "0.8"
bencher = "0.1"
[lib]
name = "websession"
path = "src/lib.rs"
[[bin]]
name = "ws_mgr"
path = "src/ws_mgr.rs"
[[bin]]
name = "ws_simple"
path = "src/bin/simple.rs"
[[bench]]
name = "benchmarks"
harness = false