activitystreams/activitystreams-types/Cargo.toml

25 lines
723 B
TOML
Raw Normal View History

2018-05-14 03:24:41 +00:00
[package]
name = "activitystreams-types"
description = "Base types from the Activity Streams spec"
version = "0.3.0"
2018-05-14 03:24:41 +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-14 03:24:41 +00:00
keywords = ["activitystreams", "activitypub"]
2019-10-28 23:18:12 +00:00
edition = "2018"
2018-05-14 03:24:41 +00:00
[dependencies]
thiserror = "1.0.11"
2020-03-09 17:56:59 +00:00
activitystreams-derive = { version = "0.3", path = "../activitystreams-derive" }
activitystreams-traits = { version = "0.3", path = "../activitystreams-traits" }
2018-05-14 03:24:41 +00:00
chrono = { version = "0.4", features = ["serde"] }
mime = "0.3"
2020-03-09 17:56:59 +00:00
serde = { version = "1.0", features = ["derive"] }
2018-05-14 03:24:41 +00:00
serde_json = "1.0"
2020-03-09 17:56:59 +00:00
typetag = "0.1.4"
2020-03-10 03:54:41 +00:00
url = "2.1"
2018-05-14 06:18:12 +00:00
[dev-dependencies]
anyhow = "1.0"