-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.59 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
[package]
license = "MIT"
edition = "2021"
version = "0.1.0"
readme = "README.md"
name = "wld-usernames"
authors = ["Miguel Piedrafita <[email protected]>"]
repository = "https://github.com/worldcoin/wld-usernames"
description = "Backend powering World App username registration and querying."
[dependencies]
axum = "0.7.7"
hex = "0.4.3"
http = "1.1.0"
idkit = "0.1.2"
regex = "1.11.0"
anyhow = "1.0.91"
tracing = "0.1.40"
dotenvy = "0.15.7"
thiserror = "1.0.65"
num-traits = "0.2.19"
serde_json = "1.0.132"
url = { version = "2.5.2", features = ["serde"] }
tokio = { version = "1.41.0", features = ["full"] }
chrono = { version = "0.4.38", features = ["serde"] }
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.213", features = ["derive"] }
tower-http = { version = "0.6.1", features = ["cors"] }
axum-jsonschema = { version = "0.8.0", features = ["aide"] }
schemars = { version = "0.8.21", features = ["chrono", "url"] }
aide = { version = "0.13.4", features = ["axum", "macros", "scalar"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
ruint = { version = "1.12.3", default-features = false, features = [
"num-traits",
] }
sqlxinsert = { version = "0.11.0", default-features = false, features = [
"postgres",
] }
alloy = { git = "https://github.com/alloy-rs/alloy.git", features = [
"eip712",
"sol-types",
"signer-local",
] }
sqlx = { version = "0.8.2", features = [
"chrono",
"macros",
"migrate",
"postgres",
"tls-rustls",
"runtime-tokio",
], default-features = false }
[build-dependencies]
chrono = "0.4.38"