Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/async-trait
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.76
Choose a base ref
...
head repository: dtolnay/async-trait
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.1.77
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 2, 2024

  1. Copy the full SHA
    69e73f5 View commit details
  2. Release 1.0.77

    dtolnay committed Jan 2, 2024
    Copy the full SHA
    7084226 View commit details
Showing with 5 additions and 5 deletions.
  1. +4 −4 Cargo.toml
  2. +1 −1 src/lib.rs
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-trait"
version = "0.1.76"
version = "0.1.77"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["asynchronous", "no-std"]
description = "Type erasure for async trait methods"
@@ -15,9 +15,9 @@ rust-version = "1.56"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.63"
quote = "1.0.29"
syn = { version = "2.0.23", features = ["full", "visit-mut"] }
proc-macro2 = "1.0.74"
quote = "1.0.35"
syn = { version = "2.0.46", features = ["full", "visit-mut"] }

[dev-dependencies]
futures = "0.3.30"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -316,7 +316,7 @@
//! let object = &value as &dyn ObjectSafe;
//! ```
#![doc(html_root_url = "https://docs.rs/async-trait/0.1.76")]
#![doc(html_root_url = "https://docs.rs/async-trait/0.1.77")]
#![allow(
clippy::default_trait_access,
clippy::doc_markdown,