mirror of
https://git.asonix.dog/asonix/activitystreams.git
synced 2025-02-16 13:35:14 +00:00
30 lines
833 B
TOML
30 lines
833 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.3", path = "activitystreams-traits" }
|
|
activitystreams-types = { version = "0.3.0", path = "activitystreams-types" }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
activitystreams-derive = { version = "0.3", path = "activitystreams-derive" }
|
|
|
|
[profile.dev.package.activitystreams-derive]
|
|
opt-level = 3
|
|
|
|
[workspace]
|
|
members = [
|
|
"activitystreams-derive",
|
|
"activitystreams-traits",
|
|
"activitystreams-types",
|
|
]
|