forked from alemi/upub
30 lines
830 B
TOML
30 lines
830 B
TOML
[package]
|
|
name = "apb"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
authors = [ "alemi <me@alemi.dev>" ]
|
|
description = "Traits and types to handle ActivityPub objects"
|
|
license = "MIT"
|
|
keywords = ["activitypub", "activitystreams", "json"]
|
|
repository = "https://git.alemi.dev/upub.git"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "1"
|
|
paste = "1.0"
|
|
tracing = "0.1"
|
|
serde_json = { version = "1", optional = true }
|
|
sea-orm = { version = "0.12", optional = true }
|
|
reqwest = { version = "0.12", features = ["json"], optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
orm = ["dep:sea-orm"]
|
|
fetch = ["dep:reqwest"]
|
|
unstructured = ["dep:serde_json"]
|
|
# TODO eventually also make a structured base?
|