-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 866 Bytes
/
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
[package]
name = "clipstash"
version = "0.1.0"
edition = "2018"
default-run = "httpd"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "clipstash"
path = "src/lib/mod.rs"
[dependencies]
serde = {version = "1.0", features = ["derive"]}
serde_json = "1"
thiserror = "1"
chrono = {version = "0.4", features = ["serde"]}
uuid = {version = "1.1.0", features = ["serde", "v4"]}
derive_more = "0.99"
rand = "0.8"
sqlx = {version = "0.5", features = ["postgres", "runtime-tokio-rustls", "macros", "chrono", "uuid"]}
handlebars = {version = "4", features = ["dir_source"]}
rocket = {version = "0.5.0-rc.1", features = ["json"]}
structopt = "0.3"
dotenv = "0.15"
tokio = "1.8.0"
crossbeam-channel = "0.5"
parking_lot = "0.11"
base64 = "0.13"
reqwest = {version = "0.11", features=["blocking", "json", "cookies"]}