forked from worldcoin/wallet-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 1.04 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
[package]
license = "MIT"
edition = "2021"
version = "0.1.0"
name = "world-id-bridge"
authors = ["Miguel Piedrafita <[email protected]>"]
repository = "https://github.com/worldcoin/wallet-bridge"
description = "A bridge between the World ID SDK and the World App"
[dependencies]
axum = "0.7.4"
tower = "0.4.13"
dotenvy = "0.15.7"
serde_json = "1.0.107"
tracing = { version = "0.1", features = ["log"] }
tokio = { version = "1.31.0", features = ["full"] }
serde = { version = "1.0.183", features = ["derive"] }
schemars = { version = "0.8.16", features = ["uuid1"] }
tower-http = { version = "0.5.2", features = ["cors"] }
uuid = { version = "1.4.1", features = ["v4", "serde"] }
aide = { version = "0.13.2", features = ["axum", "scalar"] }
axum-jsonschema = { version = "0.8.0", features = ["aide"] }
redis = { version = "0.25.4", features = [
"tokio-comp",
"connection-manager",
"tokio-native-tls-comp",
] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"json",
] }
[build-dependencies]
chrono = "0.4.26"