-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (33 loc) · 918 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
[package]
name = "tamako"
version = "1.1.0"
description = "Cozy anonymous whispers"
authors = ["fawn <[email protected]>"]
repository = "https://codeberg.org/fawn/tamako"
license = "OSL-3.0"
edition = "2021"
[dependencies]
tokio = { version = "1.40.0", features = ["full"] }
actix-web = "4.9.0"
actix-files = "0.6.6"
actix-governor = "0.6.0"
actix-logger = "0.4.1"
rinja = { version = "0.3.4", features = ["with-actix-web"] }
rinja_actix = "0.3.4"
sqlx = { version = "0.8.2", features = ["postgres", "runtime-tokio-rustls"] }
serde = { version = "1.0.210", features = ["derive"] }
twink = { version = "1.1.3", features = ["12-hour", "log"] }
log = "0.4.22"
eyre = { version = "0.6.12" }
dotenvy = "0.15.7"
chrono = "0.4.38"
chrono-tz = "0.10.0"
webhook = "2.1.2"
rs-snowflake = "0.6.0"
once_cell = "1.20.2"
[profile.release]
strip = true
lto = true
codegen-units = 1
[profile.dev.package.backtrace]
opt-level = 3