mirror of
https://git.asonix.dog/asonix/activitystreams.git
synced 2024-11-22 11:51:00 +00:00
28 lines
757 B
TOML
28 lines
757 B
TOML
[package]
|
|
name = "activitystreams"
|
|
description = "Activity Streams in Rust"
|
|
version = "0.3.0"
|
|
license = "GPL-3.0"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
|
|
readme = "README.md"
|
|
keywords = ["activitystreams", "activitypub"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
activitystreams-traits = { version = "0.2", path = "activitystreams-traits" }
|
|
activitystreams-types = { version = "0.3.0", path = "activitystreams-types" }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
activitystreams-derive = { version = "0.2", path = "activitystreams-derive" }
|
|
|
|
[workspace]
|
|
members = [
|
|
"activitystreams-derive",
|
|
"activitystreams-traits",
|
|
"activitystreams-types",
|
|
]
|