-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 899 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 = "2021"
# 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", features = ["derive"] }
serde_json = "1"
thiserror = "1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.8", features = ["serde", "v4"] }
derive_more = "0.99"
rand = "0.8"
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio-rustls", "macros", "chrono", "uuid"] }
handlebars = { version = "4", features = ["dir_source"] }
rocket ={ version = "0.5", features = ["json"] }
structopt = "0.3"
dotenv = "0.15"
tokio = "1.8.0"
crossbeam-channel = "0.5"
parking_lot = "0.12"
base64 = "0.22"
reqwest = { vesrion = "0.11", features = ["blocking", "json", "cookies"] }
strum = { version = "0.21", features = ["derive"] }