-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 995 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
[package]
name = "abyss"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
chrono = "0.4.38"
diesel = { version = "2.2.2", features = ["postgres", "r2d2"] }
dotenvy = "0.15.7"
fix_fn = "1.0.2"
lazy_static = "1.5.0"
log = "0.4.22"
openssl = "0.10.66"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
ron = "0.8.1"
rossweisse = "0.0.3"
serde = { version = "1.0.204", features = ["derive"] }
tokio = { version = "1.39.2", features = ["full"] }
twinstar = "0.4.0" # for "ssr templating" with its `Document` struct. we don't use it as any framework.
urlencoding = "2.1.3"
uuid = { version = "1.10.0", features = ["v4"] }
windmark = { version = "0.3.11", features = [
"logger",
"pretty_env_logger",
"auto-deduce-mime",
] }
# fixme: [`chrono::NaiveDateTime`] from postgresql `timestamp`s doesn't work?
# chrono = { version = "0.4.38", default-features = false, features = [
# "alloc",
# "now",
# "std",
# "serde",
# ] }