2018-05-12 05:31:33 +00:00
|
|
|
[package]
|
2018-05-12 19:35:10 +00:00
|
|
|
name = "activitystreams"
|
2020-07-25 22:08:04 +00:00
|
|
|
description = "A set of core types and traits for activitystreams data"
|
2022-12-07 00:19:25 +00:00
|
|
|
version = "0.7.0-alpha.22"
|
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>"]
|
2022-03-08 18:12:14 +00:00
|
|
|
repository = "https://git.asonix.dog/asonix/activitystreams"
|
2020-07-25 22:06:27 +00:00
|
|
|
documentation = "https://docs.rs/activitystreams"
|
2018-05-14 06:21:24 +00:00
|
|
|
readme = "README.md"
|
2018-05-12 20:14:43 +00:00
|
|
|
keywords = ["activitystreams", "activitypub"]
|
2021-10-21 21:38:07 +00:00
|
|
|
edition = "2021"
|
2018-05-12 05:31:33 +00:00
|
|
|
|
2020-07-25 21:59:15 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2020-03-11 14:56:36 +00:00
|
|
|
|
2020-07-25 21:59:15 +00:00
|
|
|
[workspace]
|
2022-01-28 18:24:08 +00:00
|
|
|
members = ["activitystreams-ext", "activitystreams-kinds"]
|
2018-05-14 03:24:41 +00:00
|
|
|
|
2020-07-25 21:59:15 +00:00
|
|
|
[dependencies]
|
2022-12-07 00:19:25 +00:00
|
|
|
activitystreams-kinds = { version = "0.3.0", path = "./activitystreams-kinds/", default-features = false, features = [
|
2022-01-28 18:24:08 +00:00
|
|
|
"iri-string",
|
|
|
|
] }
|
2022-12-07 00:19:25 +00:00
|
|
|
iri-string = { version = "0.7.0", features = ["serde", "std"] }
|
2020-07-25 21:59:15 +00:00
|
|
|
mime = "0.3"
|
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"
|
2022-01-11 17:58:16 +00:00
|
|
|
time = { version = "0.3.5", features = ["formatting", "parsing"] }
|
2018-05-14 06:18:12 +00:00
|
|
|
|
2020-07-25 21:59:15 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
anyhow = "1.0"
|