chhoto-url/actix/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2024-04-03 20:40:26 -05:00
# SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra689@gmail.com>
# SPDX-License-Identifier: MIT
2023-04-02 16:53:55 -05:00
[package]
name = "chhoto-url"
2024-10-03 00:02:48 -05:00
version = "5.4.4"
2023-04-02 16:53:55 -05:00
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
2024-01-30 22:08:04 -06: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 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]
2024-02-08 10:04:12 -06:00
actix-web = "4.5.1"
actix-files = "0.6.5"
2024-09-18 11:51:50 -05:00
rusqlite = { version = "0.32.0", features = ["bundled"] }
2024-02-08 10:04:12 -06:00
regex = "1.10.3"
2023-04-03 17:40:37 -05:00
rand = "0.8.5"
2024-09-18 11:51:50 -05:00
actix-session = { version = "0.10.0", features = ["cookie-session"] }
2024-02-08 10:04:12 -06:00
env_logger = "0.11.1"
2024-03-31 00:38:42 -05:00
nanoid = "0.4.0"
serde_json = "1.0.115"
serde = { version = "1.0.197", features = [ "derive" ] }