diff --git a/Cargo.toml b/Cargo.toml index 8e9f492..de76967 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -activitystreams-new = { version = "0.1.0", git = "https://git.asonix.dog/asonix/activitystreams-sketch" } +activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/README.md b/README.md index 7c679a7..a0737d1 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ This crate provides Ext1, Ext2, Ext3, and Ext4 for adding extensions to Activity First, add ActivityStreams to your dependencies ```toml [dependencies] -activitystreams-new = { version = "0.1.0", git = "https://git.asonix.dog/asonix/activitystreams-sketch" } -activitystreams-ext = { version = "0.1.0", git = "https://git.asonix.dog/asonix/activitystreams-ext" } +activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" } +activitystreams-ext = { git = "https://git.asonix.dog/asonix/activitystreams-ext" } [patch.crates-io] typed-builder = { git = "https://git.asonix.dog/asonix/typed-builder" } diff --git a/src/lib.rs b/src/lib.rs index f82b0c9..9458e16 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,8 +7,8 @@ //! First, add ActivityStreams to your dependencies //! ```toml //! [dependencies] -//! activitystreams-new = { version = "0.1.0", git = "https://git.asonix.dog/asonix/activitystreams-sketch" } -//! activitystreams-ext = { version = "0.1.0", git = "https://git.asonix.dog/asonix/activitystreams-ext" } +//! activitystreams-new = { git = "https://git.asonix.dog/asonix/activitystreams-sketch" } +//! activitystreams-ext = { git = "https://git.asonix.dog/asonix/activitystreams-ext" } //! //! [patch.crates-io] //! typed-builder = { git = "https://git.asonix.dog/asonix/typed-builder" }