-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (39 loc) · 1.17 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
[package]
name = "lnfilestoreserver"
version = "0.1.1"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.1"
rocket = { version = "0.5.0-rc.2", features = ["tls"] }
juniper = "0.15.10"
juniper_rocket = "0.8.2"
diesel = { version = "1.4.7", features = ["postgres","r2d2","chrono","uuidv07"] }
dotenv = "0.15.0"
chrono = { version = "0.4.19", features = ["serde"] }
itconfig = { version = "1", features = ["macro"] }
diesel-derive-enum = { version = "1.1.1", features = ["postgres"] }
lazy_static = "1.4.0"
derive_more = "0.99.16"
tonic_lnd = "0.4.0"
tonic = "0.6.2"
hex = "0.4.3"
serde = "1.0.136"
serde_json = "1.0.68"
lightning-invoice = "0.19.0"
diesel_migrations = "1.4.0"
rocket-multipart-form-data = "0.10.3"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
multer = "2.0.2"
jsonwebtoken = "8.0.1"
regex = "1.5.5"
bcrypt = "0.13.0"
juniper_rocket_multipart_handler = "0.1.0"
infer = "0.8.1"
base64 = "0.13.0"
juniper_relay_connection = "0.1.1"
[dependencies.tokio-util]
version = "0.7.1"
[dependencies.rocket_sync_db_pools]
version = "0.1.0-rc.2"
features = ["diesel_postgres_pool"]