Shorten toml lines

This commit is contained in:
asonix 2020-05-17 19:28:37 -05:00
parent 9bbd569971
commit 5464a54c27
3 changed files with 5 additions and 5 deletions

View file

@ -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"

View file

@ -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" }

View file

@ -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" }