-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
53 lines (50 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "filite"
version = "0.3.0"
authors = ["Raphaël Thériault <[email protected]>"]
edition = "2018"
description = "A simple, light and standalone pastebin, URL shortener and file-sharing service"
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"
[dependencies]
actix-files = "0.2.1"
actix-identity = "0.2.1"
actix-rt = "1.0.0"
actix-multipart = "0.2.0"
actix-web = "2.0.0"
base64 = "0.11.0"
blake3 = "0.1.1"
chrono = "0.4.10"
dialoguer = "0.5.0"
diesel_migrations = "1.4.0"
dirs = "2.0.2"
dotenv = { version = "0.15.0", optional = true }
env_logger = "0.7.1"
futures = "0.3.1"
lazy_static = "1.4.0"
num_cpus = "1.11.1"
radix_fmt = "1.0.0"
rand = "0.7.3"
toml = "0.5.5"
[dependencies.diesel]
version = "1.4.3"
features = ["r2d2", "sqlite"]
[dependencies.libsqlite3-sys]
version = "0.16.0"
features = ["bundled"]
[dependencies.serde]
version = "1.0.104"
features = ["derive"]
[build-dependencies]
rand = "0.7.3"
[features]
default = []
dev = ["dotenv"]