mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* chore(main): release 0.13.6 * chore: update Cargo.lock Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
41 lines
944 B
TOML
41 lines
944 B
TOML
[package]
|
|
name = "revolt-permissions"
|
|
version = "0.13.6"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Paul Makles <me@insrt.uk>"]
|
|
description = "Revolt Backend: Permission Logic"
|
|
repository = "https://github.com/stoatchat/stoatchat"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
bson = ["dep:bson"]
|
|
serde = ["dep:serde"]
|
|
schemas = ["dep:schemars"]
|
|
try-from-primitive = ["dep:num_enum"]
|
|
|
|
|
|
[dev-dependencies]
|
|
# Async
|
|
async-std = { workspace = true, features = ["attributes"] }
|
|
|
|
[dependencies]
|
|
# Core
|
|
revolt-result = { workspace = true }
|
|
|
|
# Utility
|
|
auto_ops = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
num_enum = { workspace = true, optional = true }
|
|
|
|
# Async
|
|
async-trait = { workspace = true }
|
|
|
|
# Serialisation
|
|
serde = { workspace = true, optional = true }
|
|
bson = { workspace = true, optional = true }
|
|
|
|
# Spec Generation
|
|
schemars = { workspace = true, optional = true }
|