Skip to content

Commit

Permalink
bump all crates
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed Dec 8, 2024
1 parent 941cd64 commit ce596db
Show file tree
Hide file tree
Showing 25 changed files with 78 additions and 63 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 17 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,27 @@ members = [
resolver = "2"

[workspace.dependencies]
scuffle-workspace-hack = { path = "crates/workspace-hack" }
scuffle-workspace-hack = { path = "crates/workspace-hack", version = "0.1.0" }
scuffle-bootstrap = { path = "crates/bootstrap", version = "0.0.2" }
scuffle-bootstrap-derive = { path = "crates/bootstrap/derive", version = "0.0.2" }
scuffle-bootstrap-telemetry = { path = "crates/bootstrap/telemetry", version = "0.0.3" }
scuffle-image-processor-proto = { path = "apps/image-processor/proto", version = "0.0.2" }
scuffle-image-processor = { path = "apps/image-processor", version = "0.0.2" }
scuffle-context = { path = "crates/context", version = "0.0.2" }
scuffle-settings = { path = "crates/settings", version = "0.0.2" }
scuffle-signal = { path = "crates/signal", version = "0.0.2" }
scuffle-http = { path = "crates/http", version = "0.0.4" }
scuffle-metrics = { path = "crates/metrics", version = "0.0.4" }
scuffle-pprof = { path = "crates/pprof", version = "0.0.2" }
scuffle-batching = { path = "crates/batching", version = "0.0.3" }
scuffle-postcompile = { path = "crates/postcompile", version = "0.0.5" }
scuffle-ffmpeg = { path = "crates/ffmpeg", version = "0.0.2" }
scuffle-h3-webtransport = { path = "crates/h3-webtransport", version = "0.0.2" }
scuffle-metrics-derive = { path = "crates/metrics/derive", version = "0.0.2" }

[profile.release-debug]
inherits = "release"
debug = true

[patch.crates-io.scuffle-workspace-hack]
path = "crates/workspace-hack"
version = "=0.1.0"
20 changes: 10 additions & 10 deletions apps/image-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-image-processor"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down Expand Up @@ -48,13 +48,13 @@ strfmt = "0.2"
opentelemetry-otlp = { version = "0.27", features = ["metrics", "logs"] }
opentelemetry_sdk = { version = "0.27", features = ["rt-tokio"] }

scuffle-bootstrap = { version = "0.0.1", path = "../../crates/bootstrap" }
scuffle-bootstrap-telemetry = { version = "0.0.2", path = "../../crates/bootstrap/telemetry", features = ["prometheus", "opentelemetry-metrics", "opentelemetry-logs", "opentelemetry-traces"] }
scuffle-ffmpeg = { version = "0.0.1", path = "../../crates/ffmpeg", features = ["tracing"] }
scuffle-http = { version = "0.0.3", path = "../../crates/http", features = ["axum"]}
scuffle-context = { version = "0.0.1", path = "../../crates/context" }
scuffle-signal = { version = "0.0.1", path = "../../crates/signal", features = ["bootstrap"] }
scuffle-image-processor-proto = { version = "0.0.1", path = "./proto", features = ["server", "serde"]}
scuffle-metrics = { version = "0.0.4", path = "../../crates/metrics" }
scuffle-settings = { version = "0.0.1", path = "../../crates/settings", features = ["full"] }
scuffle-bootstrap.workspace = true
scuffle-bootstrap-telemetry = { workspace = true, features = ["prometheus", "opentelemetry-metrics", "opentelemetry-logs", "opentelemetry-traces"] }
scuffle-ffmpeg = { workspace = true, features = ["tracing"] }
scuffle-http = { workspace = true, features = ["axum"]}
scuffle-context = { workspace = true }
scuffle-signal = { workspace = true, features = ["bootstrap"] }
scuffle-image-processor-proto = { workspace = true, features = ["server", "serde"]}
scuffle-metrics = { workspace = true }
scuffle-settings = { workspace = true, features = ["full"] }
scuffle-workspace-hack.workspace = true
2 changes: 1 addition & 1 deletion apps/image-processor/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "scuffle-image-processor-enroll"
path = "src/enroll.rs"

[dependencies]
scuffle-image-processor-proto = { path = "../proto", features = ["client"] }
scuffle-image-processor-proto = { workspace = true, features = ["client"] }
tokio = { version = "1", features = ["full"] }
tonic = { version = "0.12", features = ["transport"] }
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion apps/image-processor/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-image-processor-proto"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/batching/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-batching"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/batching/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ name = "scuffle-batching-dataloader"
path = "src/dataloader.rs"

[dependencies]
scuffle-batching = { path = ".." }
scuffle-batching.workspace = true
tokio = { version = "1", features = ["full"] }
scuffle-workspace-hack.workspace = true
6 changes: 3 additions & 3 deletions crates/bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-bootstrap"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
description = "A utility crate for creating binaries."
repository = "https://github.com/scufflecloud/scuffle"
Expand All @@ -16,6 +16,6 @@ tokio = { version = "1", features = ["full"] }
futures = "0.3"
pin-project-lite = "0.2"

scuffle-context = { version = "0.0.1", path = "../context" }
scuffle-bootstrap-derive = { version = "0.0.1", path = "./derive" }
scuffle-context.workspace = true
scuffle-bootstrap-derive.workspace = true
scuffle-workspace-hack.workspace = true
2 changes: 1 addition & 1 deletion crates/bootstrap/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-bootstrap-derive"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
8 changes: 4 additions & 4 deletions crates/bootstrap/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ tracing = "0.1"
tracing-subscriber = "0.3"
anyhow = "1"

scuffle-bootstrap = { version = "0.0.1", path = ".."}
scuffle-settings = { version = "0.0.1", path = "../../settings", features = ["bootstrap"] }
scuffle-signal = { version = "0.0.1", path = "../../signal", features = ["bootstrap"] }
scuffle-context = { version = "0.0.1", path = "../../context" }
scuffle-bootstrap.workspace = true
scuffle-settings = { workspace = true, features = ["bootstrap"] }
scuffle-signal = { workspace = true, features = ["bootstrap"] }
scuffle-context.workspace = true
scuffle-workspace-hack.workspace = true
10 changes: 5 additions & 5 deletions crates/bootstrap/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-bootstrap-telemetry"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand All @@ -27,10 +27,10 @@ opentelemetry_sdk = { version = "0.27", optional = true }
opentelemetry-appender-tracing = { version = "0.27", optional = true }
tracing-opentelemetry = { version = "0.28.0", optional = true }

scuffle-bootstrap = { version = "0.0.1", path = ".." }
scuffle-context = { version = "0.0.1", path = "../../context" }
scuffle-http = { version = "0.0.3", path = "../../http" }
scuffle-pprof = { version = "0.0.1", path = "../../pprof", optional = true }
scuffle-bootstrap.workspace = true
scuffle-context.workspace = true
scuffle-http.workspace = true
scuffle-pprof = { workspace = true, optional = true }
scuffle-workspace-hack.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-context"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/ffmpeg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-ffmpeg"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/h3-webtransport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-h3-webtransport"
version = "0.0.1"
version = "0.0.2"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions crates/http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-http"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down Expand Up @@ -41,7 +41,7 @@ tracing = { version = "0.1", optional = true }

# For http3 features
h3 = { version = "0", optional = true }
scuffle-h3-webtransport = { version = "0.0.1", path = "../h3-webtransport", optional = true }
scuffle-h3-webtransport = { workspace = true, optional = true }

# For http3-quinn features
h3-quinn = { version = "0", optional = true }
Expand All @@ -50,7 +50,7 @@ quinn = { version = "0.11", optional = true }
hyper = { version = "1.5.1", optional = true, features = ["server"] } # http1, http2
hyper-util = { version = "0.1.10", optional = true, features = ["server", "tokio"] } # http1, http2

scuffle-context = { version = "0.0.1", path = "../context" }
scuffle-context.workspace = true
scuffle-workspace-hack.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/http/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "scuffle-http-tcp"
path = "src/tcp.rs"

[dependencies]
scuffle-http = { path = "..", features = ["http1", "http2", "tracing"] }
scuffle-http = { workspace = true, features = ["http1", "http2", "tracing"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords = ["metrics", "prometheus", "opentelemetry"]
prometheus-client = { version = "0.22.3", optional = true }
opentelemetry = { version = "0.27.0", default-features = false, features = ["metrics"] }
opentelemetry_sdk = { version = "0.27.0", default-features = false, features = ["metrics"] }
scuffle-metrics-derive = { version = "0.0.1", path = "./derive" }
scuffle-metrics-derive.workspace = true
tracing = { version = "0.1", optional = true }
parking_lot = "0.12"
scuffle-workspace-hack.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/metrics/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-metrics-derive"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/metrics/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "scuffle-metrics-prometheus"
path = "src/prometheus.rs"

[dependencies]
scuffle-metrics = { path = "../" }
scuffle-metrics.workspace = true
opentelemetry-stdout = "0.27.0"
opentelemetry_sdk = { version = "0.27.0", features = ["rt-tokio"] }
opentelemetry = "0.27.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/postcompile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postcompile"
version = "0.0.4"
version = "0.0.5"
edition = "2021"
build = "build.rs"
repository = "https://github.com/scufflecloud/scuffle"
Expand Down
2 changes: 1 addition & 1 deletion crates/pprof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scuffle-pprof"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/pprof/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "scuffle-pprof-cpu"
path = "src/cpu.rs"

[dependencies]
scuffle-pprof = { path = ".." }
scuffle-pprof.workspace = true
flate2 = "1.0"
rand = "0.8"
scuffle-workspace-hack.workspace = true
Loading

0 comments on commit ce596db

Please sign in to comment.