A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
1[package]
2name = "simplelink"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7name = "simplelink"
8path = "src/lib.rs"
9
10[dependencies]
11jsonwebtoken = "9"
12actix-web = "4.4"
13actix-cors = "0.6"
14tokio = { version = "1.36", features = ["full"] }
15sqlx = { version = "0.8", features = ["runtime-tokio-native-tls", "postgres", "uuid", "chrono"] }
16serde = { version = "1.0", features = ["derive"] }
17serde_json = "1.0"
18anyhow = "1.0"
19thiserror = "1.0"
20tracing = "0.1"
21tracing-subscriber = "0.3"
22uuid = { version = "1.7", features = ["v4", "serde"] }
23base62 = "2.0"
24clap = { version = "4.5", features = ["derive"] }
25dotenv = "0.15"
26chrono = { version = "0.4", features = ["serde"] }
27regex = "1.10"
28lazy_static = "1.4"
29argon2 = "0.5.3"