diff --git a/Cargo.toml b/Cargo.toml index 9309d54..4af405c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "activitystreams" description = "Activity Streams in Rust" -version = "0.4.0-alpha.1" +version = "0.4.0-alpha.2" license = "GPL-3.0" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/activitystreams" diff --git a/README.md b/README.md index cf693ac..7c4e8d3 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ For basic use, add the following to your Cargo.toml ```toml # Cargo.toml -activitystreams = "0.4.0-alpha.0" +activitystreams = "0.4.0-alpha.2" ``` And then use it in your project ```rust -use activitystreams::object::Video; +use activitystreams::object::streams::Video; fn main() -> Result<(), Box> { let mut v = Video::default(); @@ -125,10 +125,7 @@ And then in your project ```rust use activitystreams::{ context, - link::{ - properties::LinkProperties, - LinkExt, - }, + link::properties::LinkProperties, Link, Object, PropRefs,