Skip to content

Commit b114b67

Browse files
authored
Removed unused handlers
1 parent 3a248bd commit b114b67

21 files changed

+114
-5620
lines changed

.env.dev

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# [ad_server]
2-
TRUSTED_SERVER__AD_SERVER__AD_PARTNER_URL=http://127.0.0.1:10180
3-
41
# [publisher]
52
TRUSTED_SERVER__PUBLISHER__ORIGIN_URL=http://localhost:9090
63

Cargo.lock

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ toml = "0.9.0"
4848
url = "2.4.1"
4949
urlencoding = "2.1"
5050
uuid = { version = "1.0", features = ["v4"] }
51+
validator = { version = "0.20", features = ["derive"] }
5152
which = "8"

crates/common/Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ license = "Apache-2.0"
1111
[dependencies]
1212
base64 = { workspace = true }
1313
brotli = { workspace = true }
14+
bytes = { workspace = true }
15+
chacha20poly1305 = { workspace = true }
1416
chrono = { workspace = true }
1517
config = { workspace = true }
1618
cookie = { workspace = true }
@@ -22,31 +24,31 @@ futures = { workspace = true }
2224
handlebars = { workspace = true }
2325
hex = { workspace = true }
2426
hmac = { workspace = true }
25-
chacha20poly1305 = { workspace = true }
2627
http = { workspace = true }
2728
log = { workspace = true }
2829
log-fastly = { workspace = true }
30+
lol_html = { workspace = true }
31+
pin-project-lite = { workspace = true }
2932
serde = { workspace = true }
3033
serde_json = { workspace = true }
3134
sha2 = { workspace = true }
3235
tokio = { workspace = true }
33-
bytes = { workspace = true }
36+
trusted-server-js = { path = "../js" }
3437
url = { workspace = true }
35-
uuid = { workspace = true }
3638
urlencoding = { workspace = true }
37-
lol_html = { workspace = true }
38-
pin-project-lite = { workspace = true }
39-
trusted-server-js = { path = "../js" }
39+
uuid = { workspace = true }
40+
validator = { workspace = true }
4041

4142
[build-dependencies]
42-
serde = { workspace = true }
43-
serde_json = { workspace = true }
4443
config = { workspace = true }
4544
derive_more = { workspace = true }
4645
error-stack = { workspace = true }
4746
http = { workspace = true }
47+
serde = { workspace = true }
48+
serde_json = { workspace = true }
4849
toml = { workspace = true }
4950
url = { workspace = true }
51+
validator = { workspace = true }
5052

5153
[features]
5254
default = []

0 commit comments

Comments
 (0)