-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 926 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
31
[package]
name = "clishare"
version = "0.1.0"
edition = "2021"
[lib]
name = "clishare"
path = "src/lib/mod.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "0.8", features = ["v4", "serde"] }
derive_more = "0.99"
rand = "0.8"
sqlx = { version = "0.5", features = ["sqlite", "runtime-tokio-rustls", "macros", "chrono", "uuid"] }
handlebars = { version = "4", features = ["dir_source"] }
rocket = { version = "0.5.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"] }
strum = { version = "0.21", features = ["derive"] }
[build-dependencies]
syn = "1" # for sqlx-macros to be able to compile see: https://github.com/launchbadge/sqlx/issues/2418