0.4.0-alpha.0

This commit is contained in:
asonix 2020-03-11 08:39:57 -05:00
parent 4a7cafd419
commit 0ba47fdf75
8 changed files with 16 additions and 16 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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