apub/apub-core/Cargo.toml

21 lines
614 B
TOML
Raw Normal View History

2021-11-18 04:17:36 +00:00
[package]
name = "apub-core"
2021-11-30 03:43:54 +00:00
description = "Utilities for building activitypub servers"
2021-12-05 21:19:45 +00:00
version = "0.2.0"
2021-11-30 03:43:54 +00:00
license = "AGPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/asonix/apub"
keywords = ["activitypub", "activitystreams", "federation", "async"]
2021-11-18 04:17:36 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-11-28 02:06:53 +00:00
async-trait = "0.1.51"
2021-11-18 04:17:36 +00:00
serde = "1"
2021-11-18 15:26:38 +00:00
url = { version = "2", features = ["serde"] }
[dev-dependencies]
reqwest = { version = "0.11", default-features = false, features = ["json"] }
serde_json = "1"