1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
chhoto-url/actix/Cargo.toml

34 lines
920 B
TOML
Raw Normal View History

2023-04-02 16:53:55 -05:00
[package]
2023-04-02 22:26:23 -05:00
name = "simply-shorten"
2023-10-08 18:23:05 -05:00
version = "4.3.6"
2023-04-02 16:53:55 -05:00
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "MIT"
description = "A simple selfhosted URL shortener with no unnecessary features."
homepage = "https://github.com/SinTan1729/simply-shorten"
documentation = "https://github.com/SinTan1729/simply-shorten"
repository = "https://github.com/SinTan1729/simply-shorten"
readme = "README.md"
2023-09-19 18:11:47 -05:00
keywords = [
"docker",
"rust",
"self-hosted",
"url-shortener",
"webapp",
"shortener",
"link-shortener",
"actix-web",
]
categories = ["web-programming"]
2023-04-02 16:53:55 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-09-22 15:08:12 -05:00
actix-web = "4.4.0"
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-10-08 18:22:45 -05:00
regex = "1.9.6"
2023-04-03 17:40:37 -05:00
rand = "0.8.5"
2023-09-22 15:08:12 -05:00
actix-session = { version = "0.8.0", features = ["cookie-session"] }
2023-04-10 11:51:20 -05:00
env_logger = "0.10.0"