From 310d29482b5bd9cc35913e690b22f2b26203219a Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 14 May 2020 14:09:00 -0500 Subject: [PATCH] Remove requirement on Debug --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d487e5..db1eea7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "activitystreams" description = "Activity Streams in Rust" -version = "0.6.1" +version = "0.6.2" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/activitystreams" diff --git a/README.md b/README.md index d3e17d3..599986b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ __A set of Traits and Types that make up the ActivityStreams and ActivityPub spe First, add ActivityStreams to your dependencies ```toml -activitystreams = "0.6.1" +activitystreams = "0.6.2" ``` ### Types @@ -177,7 +177,7 @@ There are a number of features that can be disabled in this crate. By default, e enabled. ```toml -activitystreams = { version = "0.6.1", default-features = "false", features = ["derive"] } +activitystreams = { version = "0.6.2", default-features = "false", features = ["derive"] } ``` | feature | what you get | diff --git a/src/lib.rs b/src/lib.rs index 3e7173c..3aaba00 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! //! First, add ActivityStreams to your dependencies //! ```toml -//! activitystreams = "0.5.0" +//! activitystreams = "0.6.2" //! ``` //! //! ### Types @@ -209,7 +209,7 @@ //! enabled. //! //! ```toml -//! activitystreams = { version = "0.5.0", default-features = "false", features = ["derive"] } +//! activitystreams = { version = "0.6.2", default-features = "false", features = ["derive"] } //! ``` //! //! | feature | what you get | @@ -420,7 +420,7 @@ pub use self::{ /// The lowermost trait of the trait structure /// /// Base exists solely so Object and Link can have impls that don't potentially conflict -pub trait Base: std::fmt::Debug {} +pub trait Base {} #[cfg(feature = "primitives")] /// The context associated with all of the Activity Streams types defined in the crate.