mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 22:04:05 +00:00
88a0d2feec
* Adding typescript generation for API. Fixes #2824 * Try to fix Ltree issue 1. * Forgot a few types. * Fixing api tests. * Removing url_serde line. * Manually deriving TS for some types.
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "lemmy_apub"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "lemmy_apub"
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
lemmy_utils = { workspace = true }
|
|
lemmy_db_schema = { workspace = true, features = ["full"] }
|
|
lemmy_db_views = { workspace = true, features = ["full"] }
|
|
lemmy_db_views_actor = { workspace = true, features = ["full"] }
|
|
lemmy_api_common = { workspace = true, features = ["full"] }
|
|
activitypub_federation = { workspace = true }
|
|
diesel = { workspace = true }
|
|
chrono = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
actix-web = { workspace = true }
|
|
actix-rt = { workspace = true }
|
|
actix = { workspace = true }
|
|
tracing = { workspace = true }
|
|
strum_macros = { workspace = true }
|
|
url = { workspace = true }
|
|
http = { workspace = true }
|
|
futures = { workspace = true }
|
|
itertools = { workspace = true }
|
|
uuid = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
html2md = "0.2.13"
|
|
serde_with = { workspace = true }
|
|
http-signature-normalization-actix = { version = "0.6.1", default-features = false, features = ["server", "sha-2"] }
|
|
enum_delegate = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
serial_test = { workspace = true }
|
|
reqwest-middleware = { workspace = true }
|
|
task-local-extensions = "0.1.3"
|
|
assert-json-diff = "2.0.2"
|