-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (42 loc) · 1.09 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "virdis_me"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# templating
askama = "0.11.1"
# web framework
axum = { version = "0.6.7", features = ["http2"] }
# cookie based session
axum-sessions = "0.4.1"
# async session middleware
async-session = "3.0.0"
# config for various environments
config = "0.13.3"
# password hashing
rust-argon2 = "1.0.0"
# serialization / deserialization
serde = { version = "1.0.152", features = ["derive"] }
# key/value store
sled = "0.34.7"
# error types
thiserror = "1.0.38"
# async runtime
tokio = { version = "1.25.0", features = ["full"] }
# session based authentication
axum-login = { version = "0.4.1", features = ["sqlx"] }
# hashing
twox-hash = "1.6.3"
# async trait capabilities
async-trait = "0.1.64"
# error handling
eyre = "0.6.8"
# fixture for filesytems
assert_fs = "1.0.10"
# generate random data
rand = "0.8.5"
# async utilities, use attributes for testing
[dependencies.async-std]
version = "1.12.0"
features = ["attributes"]