forked from worldcoin/wallet-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 1.14 KB
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
[package]
license = "MIT"
edition = "2021"
version = "0.1.0"
name = "world-id-bridge"
authors = ["Miguel Piedrafita <rust@miguel.build>"]
repository = "https://github.com/worldcoin/wallet-bridge"
description = "A bridge between the World ID SDK and the World App"
[dependencies]
aide = { version = "0.13.2", features = ["axum", "scalar"] }
axum = "0.7.9"
axum-jsonschema = { version = "0.8.0", features = ["aide"] }
dotenvy = "0.15.7"
openssl = { version = "0.10.74", features = ["vendored"] }
redis = { version = "0.32.6", default-features = false, features = ["connection-manager", "tokio-native-tls-comp"] }
schemars = { version = "0.8.16", features = ["uuid1"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["full"] }
tower = "0.5.1"
tower-http = { version = "0.6.6", features = ["cors"] }
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt", "json"] }
uuid = { version = "1.18.1", features = ["v4", "serde"] }
[build-dependencies]
chrono = "0.4.26"
[dev-dependencies]
curl = "0.4"
tokio-test = "0.4"