Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ web-sys = { version = "0.3.97", features = [
"WritableStream",
"WritableStreamDefaultWriter",
] }
worker = { version = "0.8.1", path = "worker", features = ["queue", "d1", "axum", "timezone"] }
worker = { version = "0.8.2", path = "worker", features = ["queue", "d1", "axum", "timezone"] }
worker-codegen = { path = "worker-codegen", version = "0.2.0" }
worker-macros = { version = "0.8.1", path = "worker-macros", features = ["queue"] }
worker-sys = { version = "0.8.1", path = "worker-sys", features = ["d1", "queue"] }
worker-macros = { version = "0.8.2", path = "worker-macros", features = ["queue"] }
worker-sys = { version = "0.8.2", path = "worker-sys", features = ["d1", "queue"] }

[profile.release]
# rustc supports two "optimize for size" levels: opt-level = "s" and "z".
Expand Down
2 changes: 1 addition & 1 deletion benchmark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "workers-rs-benchmark"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "signal-test"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["Logan Gatlin <lgatlin@cloudflare.com>"]

Expand Down
2 changes: 1 addition & 1 deletion test/container-echo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "container-echo"
version = "0.3.1"
version = "0.3.2"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion worker-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
edition = "2021"
name = "worker-build"
version = "0.8.1"
version = "0.8.2"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-build"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion worker-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker-macros"
version = "0.8.1"
version = "0.8.2"
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-macros"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion worker-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "worker-sys"
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
edition = "2021"
version = "0.8.1"
version = "0.8.2"
license = "Apache-2.0"
repository = "https://github.com/cloudflare/workers-rs/tree/main/worker-sys"
description = "Low-level extern definitions / FFI bindings to the Cloudflare Workers JS Runtime."
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "worker"
version = "0.8.1"
version = "0.8.2"
authors = ["Cloudflare Workers Team <workers@cloudflare.com>"]
repository = "https://github.com/cloudflare/workers-rs"
edition = "2021"
Expand Down
17 changes: 4 additions & 13 deletions worker/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,19 +219,6 @@ mod date;
mod delay;
pub mod durable;
mod dynamic_dispatch;
// Generated by `chomp build:types` from types/email.d.ts. Keep it scoped here
// and let the high-level `send_email` module re-export the slice consumers
// need. The codegen produces builder types without `Debug` and an inner
// `email` module that triggers `clippy::module_inception`; allow both since
// they're owned by ts-gen, not us.
#[allow(
unused_imports,
dead_code,
missing_debug_implementations,
clippy::module_inception,
clippy::new_without_default
)]
mod email;
mod env;
mod error;
mod fetcher;
Expand Down Expand Up @@ -260,6 +247,10 @@ mod streams;
mod version;
mod websocket;

// Auto-generated
#[allow(unused_imports, missing_debug_implementations)]
mod email;

/// A `Result` alias defaulting to [`Error`].
pub type Result<T, E = error::Error> = StdResult<T, E>;

Expand Down
Loading