2021-07-19 15:16:13 -04:00
|
|
|
|
[package]
|
2021-07-24 13:46:22 -04:00
|
|
|
|
name = "rustypaste"
|
2022-03-11 18:04:18 -05:00
|
|
|
|
version = "0.6.4"
|
2021-11-05 16:33:42 -04:00
|
|
|
|
edition = "2021"
|
2021-07-24 13:46:22 -04:00
|
|
|
|
description = "A minimal file upload/pastebin service"
|
2021-07-19 15:16:13 -04:00
|
|
|
|
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
|
2021-07-26 14:38:15 -04:00
|
|
|
|
license = "MIT"
|
2021-07-26 14:29:46 -04:00
|
|
|
|
readme = "README.md"
|
2021-07-26 09:05:15 -04:00
|
|
|
|
homepage = "https://github.com/orhun/rustypaste"
|
|
|
|
|
repository = "https://github.com/orhun/rustypaste"
|
2021-07-26 14:45:22 -04:00
|
|
|
|
keywords = ["paste", "pastebin", "upload"]
|
|
|
|
|
categories = ["web-programming::http-server"]
|
|
|
|
|
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
|
2021-07-19 15:16:13 -04:00
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-24 16:10:52 -05:00
|
|
|
|
actix-web = { version = "3.3.3", features = ["rustls"] }
|
2021-07-23 15:52:00 -04:00
|
|
|
|
actix-multipart = "0.3.0"
|
|
|
|
|
actix-files = "0.5.0"
|
2021-07-19 18:35:52 -04:00
|
|
|
|
env_logger = "0.9.0"
|
|
|
|
|
log = "0.4.14"
|
2022-02-24 16:10:52 -05:00
|
|
|
|
serde = "1.0.136"
|
|
|
|
|
futures-util = "0.3.21"
|
2021-11-07 09:19:17 -05:00
|
|
|
|
petname = "1.1.2"
|
2022-02-24 16:10:52 -05:00
|
|
|
|
rand = "0.8.5"
|
2021-07-24 07:10:30 -04:00
|
|
|
|
dotenv = "0.15.0"
|
2021-08-04 10:35:54 -04:00
|
|
|
|
url = "2.2.2"
|
2021-08-09 15:28:33 -04:00
|
|
|
|
mime = "0.3.16"
|
2022-03-11 18:02:36 -05:00
|
|
|
|
regex = "1.5.5"
|
2021-08-09 15:28:33 -04:00
|
|
|
|
serde_regex = "1.1.0"
|
2022-03-11 18:02:36 -05:00
|
|
|
|
lazy-regex = "2.3.0"
|
2021-08-27 08:54:23 -04:00
|
|
|
|
humantime = "2.1.0"
|
2022-03-11 16:02:25 -05:00
|
|
|
|
humantime-serde = "1.1.1"
|
2021-08-27 08:54:23 -04:00
|
|
|
|
glob = "0.3.0"
|
2021-10-12 12:35:06 -04:00
|
|
|
|
ring = "0.16.20"
|
2021-11-07 08:06:57 -05:00
|
|
|
|
hotwatch = "0.4.5"
|
2021-07-23 15:52:00 -04:00
|
|
|
|
|
2021-07-24 13:48:15 -04:00
|
|
|
|
[dependencies.config]
|
2022-02-24 16:10:52 -05:00
|
|
|
|
version = "0.12.0"
|
2021-07-24 13:48:15 -04:00
|
|
|
|
default-features = false
|
|
|
|
|
features = ["toml", "yaml"]
|
|
|
|
|
|
2021-07-23 15:52:00 -04:00
|
|
|
|
[dependencies.byte-unit]
|
2022-03-11 18:02:36 -05:00
|
|
|
|
version = "4.0.14"
|
2021-07-23 15:52:00 -04:00
|
|
|
|
features = ["serde"]
|
2021-07-19 15:16:13 -04:00
|
|
|
|
|
2021-07-24 08:09:11 -04:00
|
|
|
|
[dependencies.infer]
|
2022-02-24 16:10:52 -05:00
|
|
|
|
version = "0.7.0"
|
2021-07-24 08:09:11 -04:00
|
|
|
|
default-features = false
|
|
|
|
|
|
2021-07-24 06:47:24 -04:00
|
|
|
|
[dev-dependencies]
|
2021-11-06 16:55:55 -04:00
|
|
|
|
actix-rt = "1.1.1"
|
2021-07-24 06:47:24 -04:00
|
|
|
|
|
2021-07-19 15:16:13 -04:00
|
|
|
|
[profile.dev]
|
|
|
|
|
opt-level = 0
|
|
|
|
|
debug = true
|
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
|
opt-level = 0
|
|
|
|
|
debug = true
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = 3
|
|
|
|
|
debug = false
|
|
|
|
|
panic = "unwind"
|
|
|
|
|
lto = true
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
|
opt-level = 3
|
|
|
|
|
debug = false
|