activitystreams/Cargo.toml

32 lines
817 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.3.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-09 17:56:59 +00:00
activitystreams-traits = { version = "0.3", path = "activitystreams-traits" }
activitystreams-types = { version = "0.3.0", path = "activitystreams-types" }
2018-05-14 03:24:41 +00:00
2018-05-14 06:18:12 +00:00
[dev-dependencies]
anyhow = "1.0"
2018-05-14 06:18:12 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2020-03-09 17:56:59 +00:00
activitystreams-derive = { version = "0.3", path = "activitystreams-derive" }
2018-05-14 06:18:12 +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",
]