-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
58 lines (51 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "squeakroad"
version = "0.1.14"
description = "Anonymous market with Lighting Network payments"
authors = ["Jonathan Zernik <[email protected]>"]
license = "MIT"
edition = "2021"
publish = false
[dependencies]
# rocket = { version = "0.5.0-rc.2", features = ["json", "uuid"] }
rocket = { git = "https://github.com/yzernik/Rocket", branch = "upgrade_sqlx_v_0_6", features = ["json", "uuid", "secrets"] }
serde_json = "1.0.59"
base64 = "0.13.0"
figment = { version = "0.10", features = ["toml", "env"] }
serde = "1.0.138"
hex = "0.4.3"
qr_code = { version = "1.1.0", features = ["bmp"] }
pgp = "0.8.0"
tonic_openssl_lnd = "0.1.5"
rexiv2 = "0.9.1"
[dependencies.sqlx]
version = "0.6.0"
default-features = false
features = ["runtime-tokio-rustls", "macros", "offline", "migrate"]
[dependencies.rocket_db_pools]
# version = "0.1.0-rc.2"
git = "https://github.com/yzernik/Rocket"
branch = "upgrade_sqlx_v_0_6"
features = ["sqlx_sqlite"]
[dependencies.rocket_sync_db_pools]
# version = "0.1.0-rc.2"
git = "https://github.com/yzernik/Rocket"
branch = "upgrade_sqlx_v_0_6"
features = ["sqlite_pool"]
[dependencies.rocket_auth]
# version = "0.4.0"
git = "https://github.com/yzernik/rocket_auth"
branch = "internal_branch_for_rocket_sqlx_0_6_0_post3"
features = ["sqlx-sqlite"]
[dependencies.rocket_dyn_templates]
version = "0.1.0-rc.1"
git = "https://github.com/yzernik/Rocket"
branch = "upgrade_sqlx_v_0_6"
features = ["tera"]
[dependencies.uuid]
version = "1.1.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]