2022-04-10 22:21:45 +00:00
|
|
|
[package]
|
2023-03-05 14:21:12 +00:00
|
|
|
name = "karton"
|
2023-02-17 23:02:28 +00:00
|
|
|
version = "2.0.0"
|
2022-08-25 16:55:03 +00:00
|
|
|
edition = "2021"
|
2023-03-05 14:21:12 +00:00
|
|
|
authors = ["Jade <jade@schrottkatze.de>", "Daniel Szabo <daniel.szabo99@outlook.com>"]
|
2022-06-04 23:20:23 +00:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
description = "Simple, performant, configurable, entirely self-contained Pastebin and URL shortener."
|
|
|
|
readme = "README.md"
|
2023-02-17 23:02:28 +00:00
|
|
|
homepage = "https://gitlab.com/obsidianical/microbin"
|
|
|
|
repository = "https://gitlab.com/obsidianical/microbin"
|
2023-03-05 15:10:19 +00:00
|
|
|
keywords = ["pastebin", "karton", "microbin", "actix", "selfhosted"]
|
2022-06-04 23:20:23 +00:00
|
|
|
categories = ["pastebins"]
|
|
|
|
|
2022-04-10 22:21:45 +00:00
|
|
|
[dependencies]
|
2022-08-25 16:55:03 +00:00
|
|
|
actix-web = "4"
|
|
|
|
actix-files = "0.6.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-05-02 15:53:10 +00:00
|
|
|
serde_json = "1.0.80"
|
2022-07-13 21:50:10 +00:00
|
|
|
bytesize = { version = "1.1", features = ["serde"] }
|
2022-08-25 16:55:03 +00:00
|
|
|
askama = "0.10"
|
|
|
|
askama-filters = { version = "0.1.3", features = ["chrono"] }
|
|
|
|
chrono = "0.4.19"
|
|
|
|
rand = "0.8.5"
|
|
|
|
linkify = "0.8.1"
|
|
|
|
clap = { version = "3.1.12", features = ["derive", "env"] }
|
2022-05-02 15:53:10 +00:00
|
|
|
actix-multipart = "0.4.0"
|
|
|
|
futures = "0.3"
|
|
|
|
sanitize-filename = "0.3.0"
|
|
|
|
log = "0.4"
|
2022-05-08 15:37:54 +00:00
|
|
|
env_logger = "0.9.0"
|
|
|
|
actix-web-httpauth = "0.6.0"
|
2022-06-03 16:24:34 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
syntect = "5.0"
|
2022-10-29 11:11:55 +00:00
|
|
|
qrcode-generator = "4.1.6"
|
2022-11-01 18:56:07 +00:00
|
|
|
rust-embed = "6.4.2"
|
|
|
|
mime_guess = "2.0.4"
|
2022-11-01 13:15:13 +00:00
|
|
|
harsh = "0.2"
|
2022-06-03 16:24:34 +00:00
|
|
|
|
2022-08-25 16:55:03 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
strip = true
|