diff --git a/Cargo.toml b/Cargo.toml index dd2eea1..6d487e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "activitystreams" description = "Activity Streams in Rust" -version = "0.6.0" +version = "0.6.1" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/activitystreams" diff --git a/README.md b/README.md index f226eb7..d3e17d3 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.0" +activitystreams = "0.6.1" ``` ### 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.0", default-features = "false", features = ["derive"] } +activitystreams = { version = "0.6.1", default-features = "false", features = ["derive"] } ``` | feature | what you get | diff --git a/src/lib.rs b/src/lib.rs index 4d00cdb..3e7173c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -401,6 +401,7 @@ pub mod actor; pub mod collection; #[cfg(feature = "types")] pub mod endpoint; +#[cfg(feature = "types")] pub mod ext; pub mod link; pub mod object;