filite/Cargo.toml

54 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2019-10-07 21:43:34 +00:00
[package]
name = "filite"
2020-01-16 07:14:37 +00:00
version = "0.3.0"
2019-10-07 21:43:34 +00:00
authors = ["Raphaël Thériault <raphael_theriault@outlook.com>"]
edition = "2018"
2019-10-21 21:38:07 +00:00
description = "A simple, light and standalone pastebin, URL shortener and file-sharing service"
2019-10-25 19:48:56 +00:00
homepage = "https://github.com/raftario/filite"
repository = "https://github.com/raftario/filite"
readme = "README.md"
keywords = [
"file-sharing",
"url-shortener",
"pastebin"
]
license = "MIT"
build = "build.rs"
2019-10-07 21:43:34 +00:00
[dependencies]
2020-01-15 05:10:48 +00:00
actix-files = "0.2.1"
actix-identity = "0.2.1"
actix-rt = "1.0.0"
2020-01-15 08:26:29 +00:00
actix-multipart = "0.2.0"
2020-01-15 05:10:48 +00:00
actix-web = "2.0.0"
base64 = "0.11.0"
blake3 = "0.1.1"
2020-01-15 05:10:48 +00:00
chrono = "0.4.10"
dialoguer = "0.5.0"
2019-10-17 18:33:52 +00:00
diesel_migrations = "1.4.0"
2019-10-17 18:15:39 +00:00
dirs = "2.0.2"
dotenv = { version = "0.15.0", optional = true }
2019-10-21 15:25:40 +00:00
env_logger = "0.7.1"
2020-01-15 08:26:29 +00:00
futures = "0.3.1"
2019-10-22 18:34:26 +00:00
lazy_static = "1.4.0"
2020-01-15 05:10:48 +00:00
num_cpus = "1.11.1"
2020-01-15 20:13:08 +00:00
radix_fmt = "1.0.0"
2020-01-15 19:48:02 +00:00
rand = "0.7.3"
2020-01-15 05:10:48 +00:00
toml = "0.5.5"
2019-10-07 21:43:34 +00:00
[dependencies.diesel]
2019-10-21 15:25:40 +00:00
version = "1.4.3"
2019-10-07 21:43:34 +00:00
features = ["r2d2", "sqlite"]
[dependencies.libsqlite3-sys]
2019-10-21 15:25:40 +00:00
version = "0.16.0"
2019-10-07 21:43:34 +00:00
features = ["bundled"]
2019-10-08 00:54:18 +00:00
[dependencies.serde]
2020-01-15 05:10:48 +00:00
version = "1.0.104"
2019-10-08 00:54:18 +00:00
features = ["derive"]
2019-10-07 21:43:34 +00:00
[build-dependencies]
rand = "0.7.3"
[features]
default = []
dev = ["dotenv"]