-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (52 loc) · 1.59 KB
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
[package]
name = "effward_dev"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "effward_dev"
[dependencies]
actix-cors = "0.6.4"
actix-files = "0.6.2"
actix-session = { version = "0.7.2", features = ["redis-rs-session", "redis-rs-tls-session"] }
actix-web = "4"
actix-web-flash-messages = { version = "0.4.2", features = ["cookies"] }
ammonia = "3.3.0"
anyhow = "1.0.71"
async-recursion = "1.0.4"
async-trait = "0.1.69"
base64 = "0.21.2"
bincode = "1.3.3"
chrono = { version = "0.4", features = ["serde"] }
dashmap = "5.4.0"
dotenv = "0.15.0"
email_address = "0.2.4"
env_logger = "0.10.0"
hex = "0.4.3"
html-escape = "0.2.13"
log = "0.4.19"
maplit = "1.0.2"
mysql = "*"
pbkdf2 = { version = "0.12", features = ["simple"] }
pulldown-cmark = "0.9.3"
redis = { version = "0.21", default-features = false, features = ["aio", "tokio-comp", "connection-manager"] }
secrecy = { version = "0.8", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
shortguid = "0.5.0"
sqlx = { version = "0.6", features = [ "runtime-actix-native-tls", "mysql", "chrono", "uuid" ] }
substring = "1.4.5"
tera = "1"
thiserror = "1.0.40"
url = "2.4.0"
[dependencies.uuid]
version = "1.3.4"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
"serde", # Enable serialization with serde
]