activitystreams/Cargo.toml

30 lines
758 B
TOML
Raw Normal View History

2018-05-12 05:31:33 +00:00
[package]
name = "activitystreams"
2020-07-25 22:08:04 +00:00
description = "A set of core types and traits for activitystreams data"
2021-03-09 00:16:41 +00:00
version = "0.7.0-alpha.11"
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>"]
2020-07-25 22:06:27 +00:00
repository = "https://git.asonix.dog/Aardwolf/activitystreams"
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"]
2019-10-28 23:18:12 +00:00
edition = "2018"
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]
members = [
"activitystreams-ext"
]
2018-05-14 03:24:41 +00:00
2020-07-25 21:59:15 +00:00
[dependencies]
chrono = "0.4"
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"
2020-07-25 21:59:15 +00:00
thiserror = "1.0"
url = { version = "2.1", features = ["serde"] }
2018-05-14 06:18:12 +00:00
2020-07-25 21:59:15 +00:00
[dev-dependencies]
anyhow = "1.0"