activitystreams/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2018-05-12 05:31:33 +00:00
[package]
name = "activitystreams"
2018-05-14 03:24:41 +00:00
description = "Activity Streams in Rust"
2020-05-14 19:09:00 +00:00
version = "0.6.2"
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>"]
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-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-03-11 14:56:36 +00:00
[features]
default = ["types"]
2020-03-18 22:36:16 +00:00
derive = ["activitystreams-derive", "serde", "serde_json"]
2020-03-11 14:56:36 +00:00
kinds = ["derive", "serde"]
primitives = ["chrono", "mime", "serde", "thiserror", "url"]
2020-03-18 22:36:16 +00:00
types = ["derive", "kinds", "primitives"]
2020-03-11 14:56:36 +00:00
2018-05-12 05:31:33 +00:00
[dependencies]
2020-04-26 01:25:02 +00:00
activitystreams-derive = { version = "0.6.0", path = "activitystreams-derive", optional = true}
2020-03-11 14:56:36 +00:00
chrono = { version = "0.4", optional = true }
mime = { version = "0.3", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
2020-03-11 14:56:36 +00:00
thiserror = { version = "1.0", optional = true }
url = { version = "2.1", optional = true }
2018-05-14 03:24:41 +00:00
2018-05-14 06:18:12 +00:00
[dev-dependencies]
anyhow = "1.0"
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"
[profile.dev.package.activitystreams-derive]
opt-level = 3
2018-05-14 03:24:41 +00:00
[workspace]
members = [
"activitystreams-derive",
]