-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 894 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 894 Bytes
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
[package]
name = "notlink"
version = "0.1.0"
edition = "2021"
description = "a new kind of url shortener"
license = "AGPL-3.0"
homepage = "https://notl.ink"
documentation = "https://github.com/abdibrokhim/notlink/blob/main/README.md"
repository = "https://github.com/abdibrokhim/notlink"
[dependencies]
actix-web = "4"
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
dotenvy = "0.15"
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "^2.1.1", features = ["postgres", "chrono", "r2d2"] }
r2d2 = ">= 0.7, < 0.9"
r2d2-diesel = "1.0"
diesel_migrations = "2.2.0"
shuttle-runtime = "0.51.0"
shuttle-actix-web = "0.51.0"
rand = "0.8.5"
aes-gcm = "0.10"
aes = "0.8"
ring-compat = "0.8.0"
base64 = "0.22.1"
hex = "0.4"
once_cell = "1.20.0"
# anyhow = "1.0.95"