rustypaste/Cargo.toml

71 lines
1.4 KiB
TOML
Raw Normal View History

2021-07-19 19:16:13 +00:00
[package]
2021-07-24 17:46:22 +00:00
name = "rustypaste"
2022-02-24 21:25:50 +00:00
version = "0.6.3"
edition = "2021"
2021-07-24 17:46:22 +00:00
description = "A minimal file upload/pastebin service"
2021-07-19 19:16:13 +00:00
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
2021-07-26 18:38:15 +00:00
license = "MIT"
2021-07-26 18:29:46 +00:00
readme = "README.md"
homepage = "https://github.com/orhun/rustypaste"
repository = "https://github.com/orhun/rustypaste"
2021-07-26 18:45:22 +00:00
keywords = ["paste", "pastebin", "upload"]
categories = ["web-programming::http-server"]
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
2021-07-19 19:16:13 +00:00
[dependencies]
2022-02-24 21:10:52 +00:00
actix-web = { version = "3.3.3", features = ["rustls"] }
actix-multipart = "0.3.0"
actix-files = "0.5.0"
env_logger = "0.9.0"
log = "0.4.14"
2022-02-24 21:10:52 +00:00
serde = "1.0.136"
futures-util = "0.3.21"
2021-11-07 14:19:17 +00:00
petname = "1.1.2"
2022-02-24 21:10:52 +00:00
rand = "0.8.5"
dotenv = "0.15.0"
2021-08-04 14:35:54 +00:00
url = "2.2.2"
mime = "0.3.16"
regex = "1.5.4"
serde_regex = "1.1.0"
lazy-regex = "2.2.1"
humantime = "2.1.0"
glob = "0.3.0"
ring = "0.16.20"
hotwatch = "0.4.5"
[dependencies.config]
2022-02-24 21:10:52 +00:00
version = "0.12.0"
default-features = false
features = ["toml", "yaml"]
[dependencies.byte-unit]
2021-11-07 14:19:17 +00:00
version = "4.0.13"
features = ["serde"]
2021-07-19 19:16:13 +00:00
[dependencies.infer]
2022-02-24 21:10:52 +00:00
version = "0.7.0"
default-features = false
2021-07-24 10:47:24 +00:00
[dev-dependencies]
actix-rt = "1.1.1"
2021-07-24 10:47:24 +00:00
2021-07-19 19:16:13 +00: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