Skip to content

Commit

Permalink
rebind all package versions to the workspace cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawken Rives committed Jan 18, 2025
1 parent d64c538 commit dfd1bd9
Show file tree
Hide file tree
Showing 8 changed files with 534 additions and 443 deletions.
866 changes: 465 additions & 401 deletions Cargo.lock

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,28 @@ members = [
"ccc-types",
"e2e",
]

[workspace.dependencies]
axum = "0.7.4"
axum-macros = "0.4.1"
bytes = "1.5.0"
ccc-handlers = { path = "./ccc-handlers" }
ccc-proxy = { path = "./ccc-proxy" }
ccc-routes = { path = "./ccc-routes" }
ccc-types = { path = "./ccc-types" }
clap = { version = "4.5.3", features = ["derive"] }
http = "1.1.0"
phf = { version = "0.11.2", features = ["macros"] }
reqwest = { version = "0.12.0", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_urlencoded = "0.7.1"
similar = "2.4.0"
thiserror = "1.0.58"
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["filter", "timeout"] }
tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
ts-rs = { version = "8.0.0" }
url = "2.5.0"
24 changes: 12 additions & 12 deletions ccc-handlers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ edition = "2021"
publish = false

[dependencies]
ccc-proxy = { path = "../ccc-proxy" }
ccc-types = { path = "../ccc-types" }
axum = "0.7.4"
axum-macros = "0.4.1"
http = "1.1.0"
reqwest = { version = "0.12.0", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
thiserror = { version = "1.0.58" }
tracing = "0.1.40"
serde_urlencoded = "0.7.1"
phf = { version = "0.11.2", features = ["macros"] }
ccc-proxy = { workspace = true }
ccc-types = { workspace = true }
axum = { workspace = true }
axum-macros = { workspace = true }
http = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
serde_urlencoded = { workspace = true }
phf = { workspace = true }
16 changes: 8 additions & 8 deletions ccc-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
axum = "0.7.4"
bytes = "1.5.0"
http = "1.1.0"
reqwest = { version = "0.12.0", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
thiserror = { version = "1.0.58" }
tracing = "0.1.40"
axum = { workspace = true }
bytes = { workspace = true }
http = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
4 changes: 2 additions & 2 deletions ccc-routes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.7.4"
ccc-handlers = { path = "../ccc-handlers" }
axum = { workspace = true }
ccc-handlers = { workspace = true }
22 changes: 11 additions & 11 deletions ccc-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ edition = "2021"
publish = false

[dependencies]
axum = "0.7.4"
clap = { version = "4.5.3", features = ["derive"] }
ccc-types = { path = "../ccc-types" }
ccc-routes = { path = "../ccc-routes" }
reqwest = { version = "0.12.0", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["filter", "timeout"] }
tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
axum = { workspace = true }
clap = { workspace = true }
ccc-types = { workspace = true }
ccc-routes = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
tokio = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
6 changes: 3 additions & 3 deletions ccc-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"
publish = false

[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
ts-rs = {version = "8.0.0" }
serde = { workspace = true }
serde_json = { workspace = true }
ts-rs = { workspace = true }
14 changes: 8 additions & 6 deletions e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
name = "e2e"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-only"
description = "End-to-end tests for the project"

[dependencies]
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
reqwest = "0.12.0"
url = "2.5.0"
bytes = "1.5.0"
similar = "2.4.0"
serde_json = "1.0.114"
tokio = { workspace = true }
reqwest = { workspace = true }
url = { workspace = true }
bytes = { workspace = true }
similar = { workspace = true }
serde_json = { workspace = true }

0 comments on commit dfd1bd9

Please sign in to comment.