mirror-chhoto-url/actix/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Normal View History

2023-04-02 21:53:55 +00:00
[package]
name = "chhoto-url"
2024-03-31 05:59:58 +00:00
version = "5.2.0"
2023-04-02 21:53:55 +00:00
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
2024-01-31 04:08:04 +00:00
license = "mit"
description = "A simple selfhosted URL shortener with no unnecessary features."
homepage = "https://github.com/SinTan1729/chhoto-url"
documentation = "https://github.com/SinTan1729/chhoto-url"
repository = "https://github.com/SinTan1729/chhoto-url"
readme = "README.md"
2023-09-19 23:11:47 +00:00
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]
2024-02-08 16:04:12 +00:00
actix-web = "4.5.1"
actix-files = "0.6.5"
2024-03-16 04:14:28 +00:00
rusqlite = { version = "0.31.0", features = ["bundled"] }
2024-02-08 16:04:12 +00:00
regex = "1.10.3"
2023-04-03 22:40:37 +00:00
rand = "0.8.5"
2024-02-08 16:04:12 +00:00
actix-session = { version = "0.9.0", features = ["cookie-session"] }
env_logger = "0.11.1"
2024-03-31 05:38:42 +00:00
nanoid = "0.4.0"
serde_json = "1.0.115"
serde = { version = "1.0.197", features = [ "derive" ] }