activitystreams/Cargo.toml

28 lines
736 B
TOML
Raw Normal View History

2018-05-12 05:31:33 +00:00
[package]
name = "activitystreams"
2018-05-14 03:24:41 +00:00
description = "Activity Streams in Rust"
version = "0.2.0"
2018-05-12 20:14:43 +00:00
license = "GPL-3.0"
2018-05-12 05:31:33 +00:00
authors = ["asonix <asonix.dev@gmail.com>"]
2018-05-12 20:14:43 +00:00
repository = "https://github.com/asonix/activitystreams"
2018-05-14 06:21:24 +00:00
readme = "README.md"
2018-05-12 20:14:43 +00:00
keywords = ["activitystreams", "activitypub"]
2018-05-12 05:31:33 +00:00
[dependencies]
2018-05-14 03:24:41 +00:00
activitystreams-traits = { version = "0.1", path = "activitystreams-traits" }
activitystreams-types = { version = "0.2", path = "activitystreams-types" }
2018-05-14 03:24:41 +00:00
2018-05-14 06:18:12 +00:00
[dev-dependencies]
failure = "0.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
activitystreams-derive = { version = "0.1", path = "activitystreams-derive" }
2018-05-14 03:24:41 +00:00
[workspace]
members = [
"activitystreams-derive",
"activitystreams-traits",
"activitystreams-types",
]