feat: initial work on discord template importer

This commit is contained in:
Zomatree
2026-02-16 22:28:51 +00:00
parent 74f0c537e6
commit 8976273410
9 changed files with 417 additions and 3 deletions

View File

@@ -0,0 +1,27 @@
[package]
name = "revolt-discord"
version = "0.11.3"
edition = "2021"
license = "MIT"
authors = ["Zomatree <me@zomatree.live>"]
description = "Revolt Backend: Discord Compatibility"
repository = "https://github.com/stoatchat/stoatchat"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
[dependencies]
# Core
revolt-result = { version = "0.11.3", path = "../result" }
revolt-database = { version = "0.11.3", path = "../database" }
revolt-permissions = { version = "0.11.3", path = "../permissions" }
revolt-models = { version = "0.11.3", path = "../models" }
# Serialisation
serde_json = { version = "1" }
serde = { version = "1", features = ["derive"] }
# Http
reqwest = { version = "0.12", features = ["json"] }