From 4f77317bef803d01245a6f2d9392dacbe35f66e7 Mon Sep 17 00:00:00 2001 From: asonix Date: Fri, 19 Jun 2020 13:35:35 -0500 Subject: [PATCH] Update branch, docs link --- README.md | 2 +- src/lib.rs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cf99048..53f31ec 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ _A set of Traits and Types that make up the ActivityStreams and ActivityPub spec First, add ActivityStreams to your dependencies ```toml [dependencies] -activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" } +activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch", branch = "main" } ``` ### Types diff --git a/src/lib.rs b/src/lib.rs index 602ef1a..9bbe1d4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! First, add ActivityStreams to your dependencies //! ```toml //! [dependencies] -//! activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" } +//! activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch", branch = "main" } //! ``` //! //! ### Types @@ -292,6 +292,8 @@ //! //! You should have received a copy of the GNU General Public License along with ActivityStreams. If not, see [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/). +#![doc(html_root_url = "https://activitystreams-new.asonix.dog/activitystreams_new/")] + pub mod activity; pub mod actor; pub mod base;