mirror of
https://git.asonix.dog/asonix/activitystreams.git
synced 2024-11-22 03:40:59 +00:00
0.4.0-alpha.0
This commit is contained in:
parent
4a7cafd419
commit
0ba47fdf75
8 changed files with 16 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "activitystreams"
|
||||
description = "Activity Streams in Rust"
|
||||
version = "0.4.0"
|
||||
version = "0.4.0-alpha.0"
|
||||
license = "GPL-3.0"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
||||
|
@ -10,9 +10,9 @@ keywords = ["activitystreams", "activitypub"]
|
|||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
activitystreams-traits = { version = "0.3.0", path = "activitystreams-traits" }
|
||||
activitystreams-types = { version = "0.4.0", path = "activitystreams-types" }
|
||||
activitystreams-derive = { version = "0.3.0", path = "activitystreams-derive" }
|
||||
activitystreams-traits = { version = "0.4.0-alpha.0", path = "activitystreams-traits" }
|
||||
activitystreams-types = { version = "0.4.0-alpha.0", path = "activitystreams-types" }
|
||||
activitystreams-derive = { version = "0.4.0-alpha.0", path = "activitystreams-derive" }
|
||||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0"
|
||||
|
|
|
@ -12,7 +12,7 @@ For basic use, add the following to your Cargo.toml
|
|||
```toml
|
||||
# Cargo.toml
|
||||
|
||||
activitystreams = "0.4"
|
||||
activitystreams = "0.4.0-alpha.0"
|
||||
```
|
||||
|
||||
And then use it in your project
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "activitystreams-derive"
|
||||
description = "Derive macros for activitystreams"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0-alpha.0"
|
||||
license = "GPL-3.0"
|
||||
authors = ["asonix <asonix.dev@gmail.com>"]
|
||||
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
||||
|
@ -15,7 +15,7 @@ syn = "1.0"
|
|||
proc-macro2 = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
activitystreams-traits = { version = "0.3", path = "../activitystreams-traits" }
|
||||
#activitystreams-traits = { version = "0.4.0-alpha.0", path = "../activitystreams-traits" }
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
serde_json = "1.0"
|
||||
|
|
|
@ -10,9 +10,9 @@ Add the required crates to your `Cargo.toml`
|
|||
```toml
|
||||
# Cargo.toml
|
||||
|
||||
activitystreams-derive = "0.3"
|
||||
activitystreams-traits = "0.3"
|
||||
activitystreams-types = "0.4"
|
||||
activitystreams-derive = "0.4-alpha.0"
|
||||
activitystreams-traits = "0.4-alpha.0"
|
||||
activitystreams-types = "0.4-alpha.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
```
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "activitystreams-traits"
|
||||
description = "Traits for ActivityStreams 2.0 objects"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0-alpha.0"
|
||||
license = "GPL-3.0"
|
||||
authors = ["asonix <asonix.dev@gmail.com>"]
|
||||
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
||||
|
|
|
@ -12,7 +12,7 @@ projects. See the `activitystreams-types` crate for examples of how these traits
|
|||
|
||||
Add it to your `Cargo.toml`
|
||||
```toml
|
||||
activitystreams-traits = "0.3"
|
||||
activitystreams-traits = "0.4.0-alpha.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
typetag = "0.1.4"
|
||||
```
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "activitystreams-types"
|
||||
description = "Base types from the Activity Streams spec"
|
||||
version = "0.4.0"
|
||||
version = "0.4.0-alpha.0"
|
||||
license = "GPL-3.0"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
||||
|
@ -11,8 +11,8 @@ edition = "2018"
|
|||
|
||||
[dependencies]
|
||||
thiserror = "1.0.11"
|
||||
activitystreams-derive = { version = "0.3", path = "../activitystreams-derive" }
|
||||
activitystreams-traits = { version = "0.3", path = "../activitystreams-traits" }
|
||||
activitystreams-derive = { version = "0.4.0-alpha.0", path = "../activitystreams-derive" }
|
||||
activitystreams-traits = { version = "0.4.0-alpha.0", path = "../activitystreams-traits" }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
mime = "0.3"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
|
|
@ -10,7 +10,7 @@ First, add the crate to your `Cargo.toml`
|
|||
```toml
|
||||
# Cargo.toml
|
||||
|
||||
activitystreams-types = "0.4"
|
||||
activitystreams-types = "0.4.0-alpha.0"
|
||||
```
|
||||
|
||||
Then use it in your project!
|
||||
|
|
Loading…
Reference in a new issue