mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
78 lines
1.9 KiB
TOML
78 lines
1.9 KiB
TOML
[package]
|
|
name = "revolt-database"
|
|
version = "0.6.7"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
authors = ["Paul Makles <me@insrt.uk>"]
|
|
description = "Revolt Backend: Database Implementation"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
# Databases
|
|
mongodb = ["dep:mongodb", "bson"]
|
|
|
|
# ... Other
|
|
async-std-runtime = ["async-std"]
|
|
rocket-impl = ["rocket", "schemars", "revolt_okapi", "revolt_rocket_okapi"]
|
|
redis-is-patched = ["revolt-presence/redis-is-patched"]
|
|
|
|
# Default Features
|
|
default = ["mongodb", "async-std-runtime"]
|
|
|
|
[dependencies]
|
|
# Core
|
|
revolt-result = { version = "0.6.7", path = "../result" }
|
|
revolt-models = { version = "0.6.7", path = "../models" }
|
|
revolt-presence = { version = "0.6.7", path = "../presence" }
|
|
revolt-permissions = { version = "0.6.7", path = "../permissions", features = [
|
|
"serde",
|
|
"bson",
|
|
] }
|
|
|
|
# Utility
|
|
log = "0.4"
|
|
lru = "0.11.0"
|
|
rand = "0.8.5"
|
|
ulid = "1.0.0"
|
|
nanoid = "0.4.0"
|
|
once_cell = "1.17"
|
|
indexmap = "1.9.1"
|
|
decancer = "1.6.2"
|
|
|
|
# Serialisation
|
|
serde_json = "1"
|
|
revolt_optional_struct = "0.2.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
iso8601-timestamp = { version = "0.2.10", features = ["serde", "bson"] }
|
|
|
|
# Events
|
|
redis-kiss = { version = "0.1.4" }
|
|
|
|
# Database
|
|
bson = { optional = true, version = "2.1.0" }
|
|
mongodb = { optional = true, version = "2.1.0", default-features = false }
|
|
|
|
# Database Migration
|
|
unicode-segmentation = "1.10.1"
|
|
regex = "1"
|
|
|
|
# Async Language Features
|
|
futures = "0.3.19"
|
|
async-trait = "0.1.51"
|
|
async-recursion = "1.0.4"
|
|
|
|
# Async
|
|
async-std = { version = "1.8.0", features = ["attributes"], optional = true }
|
|
|
|
# Rocket Impl
|
|
schemars = { version = "0.8.8", optional = true }
|
|
rocket = { version = "0.5.0-rc.2", default-features = false, features = [
|
|
"json",
|
|
], optional = true }
|
|
revolt_okapi = { version = "0.9.1", optional = true }
|
|
revolt_rocket_okapi = { version = "0.9.1", optional = true }
|
|
|
|
# Authifier
|
|
authifier = { version = "1.0" }
|