activitystreams/activitystreams-kinds/Cargo.toml

25 lines
690 B
TOML
Raw Normal View History

2021-11-19 00:45:09 +00:00
[package]
name = "activitystreams-kinds"
2021-11-19 00:47:36 +00:00
description = "Type-safe activitystreams 'type' values"
2022-12-07 00:19:25 +00:00
version = "0.3.0"
2021-11-19 00:47:36 +00:00
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/activitystreams"
documentation = "https://docs.rs/activitystreams-ext"
keywords = ["activitystreams", "activitypub"]
2021-11-19 00:45:09 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-01-11 17:58:16 +00:00
[features]
default = ["url"]
2021-11-19 00:45:09 +00:00
[dependencies]
serde = { version = "1", features = ["derive"] }
2022-01-11 17:58:16 +00:00
url = { version = "2", optional = true }
2022-12-07 00:19:25 +00:00
iri-string = { version = "0.7.0", optional = true }
2021-11-19 00:55:15 +00:00
[dev-dependencies]
anyhow = "1"
serde_json = "1"