mirror-chhoto-url/actix/Cargo.toml

25 lines
879 B
TOML
Raw Normal View History

2023-04-02 21:53:55 +00:00
[package]
2023-04-03 03:26:23 +00:00
name = "simply-shorten"
2023-04-28 16:40:48 +00:00
version = "4.3.0"
2023-04-02 21:53:55 +00: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"
keywords = ["docker", "rust", "self-hosted", "url-shortener", "webapp", "shortener", "link-shortener", "actix-web"]
categories = ["web-programming"]
2023-04-02 21:53:55 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
2023-04-03 03:26:23 +00:00
actix-files = "0.6.2"
2023-04-03 20:46:22 +00:00
rusqlite = "0.29.0"
2023-04-03 03:26:23 +00:00
regex = "1.7.3"
2023-04-03 22:40:37 +00:00
rand = "0.8.5"
2023-04-08 07:52:16 +00:00
actix-session = {version = "0.7.2", features = ["cookie-session"]}
2023-04-10 16:51:20 +00:00
env_logger = "0.10.0"