2018-05-12 05:31:33 +00:00
|
|
|
[package]
|
2018-05-12 19:35:10 +00:00
|
|
|
name = "activitystreams"
|
2018-05-14 03:24:41 +00:00
|
|
|
description = "Activity Streams in Rust"
|
2020-03-11 13:39:57 +00:00
|
|
|
version = "0.4.0-alpha.0"
|
2018-05-12 20:14:43 +00:00
|
|
|
license = "GPL-3.0"
|
2018-08-04 04:01:09 +00:00
|
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
2019-05-14 16:38:15 +00:00
|
|
|
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
2018-05-14 06:21:24 +00:00
|
|
|
readme = "README.md"
|
2018-05-12 20:14:43 +00:00
|
|
|
keywords = ["activitystreams", "activitypub"]
|
2019-10-28 23:18:12 +00:00
|
|
|
edition = "2018"
|
2018-05-12 05:31:33 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-03-11 13:39:57 +00:00
|
|
|
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" }
|
2018-05-14 03:24:41 +00:00
|
|
|
|
2018-05-14 06:18:12 +00:00
|
|
|
[dev-dependencies]
|
2019-10-28 21:04:11 +00:00
|
|
|
anyhow = "1.0"
|
2020-03-10 03:54:41 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2018-05-14 06:18:12 +00:00
|
|
|
serde_json = "1.0"
|
2020-03-10 19:55:15 +00:00
|
|
|
typetag = "0.1.4"
|
2018-05-14 06:18:12 +00:00
|
|
|
|
2020-03-10 03:22:48 +00:00
|
|
|
[profile.dev.package.activitystreams-derive]
|
|
|
|
opt-level = 3
|
|
|
|
|
2018-05-14 03:24:41 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"activitystreams-derive",
|
|
|
|
"activitystreams-traits",
|
|
|
|
"activitystreams-types",
|
|
|
|
]
|