-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 820 Bytes
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
[package]
name = "shareit"
version = "0.4.0"
edition = "2018"
authors = ["Artemis <me@arty.li>"]
description = "A link shortener, file uploader and paste bin."
license = "MIT"
readme = "README.md"
repository = "https://github.com/pls-shareit/shareit"
[dependencies]
diesel = { version = "1.4.7", features = ["postgres", "chrono"] }
diesel_migrations = "1.4.0"
rocket = { version = "0.4.10", default-features = false }
toml = "0.5.8"
serde = { version = "1.0", features = ["derive"] }
humantime-serde = "1.0.1"
rand = "0.8.4"
unicode_reader = "1.0.1"
url = { version = "2.2.2", features = ["serde"] }
[dependencies.rocket_contrib]
version = "0.4.10"
default-features = false
features = ["diesel_postgres_pool", "serve", "json"]
[dependencies.byte-unit]
version = "4.0.12"
default-features = false
features = ["serde"]