2023-04-02 16:53:55 -05:00
|
|
|
[package]
|
2023-04-02 22:26:23 -05:00
|
|
|
name = "simply-shorten"
|
2023-04-08 16:02:32 -05:00
|
|
|
version = "4.0.0"
|
2023-04-02 16:53:55 -05:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-web = "4"
|
2023-04-02 22:26:23 -05:00
|
|
|
actix-files = "0.6.2"
|
2023-04-03 15:46:22 -05:00
|
|
|
rusqlite = "0.29.0"
|
2023-04-02 22:26:23 -05:00
|
|
|
regex = "1.7.3"
|
2023-04-03 17:40:37 -05:00
|
|
|
rand = "0.8.5"
|
2023-04-08 02:52:16 -05:00
|
|
|
actix-session = {version = "0.7.2", features = ["cookie-session"]}
|