[package]
edition = "2021"
name = "cloudillo-server"
version = "0.8.12"
authors = ["Szilárd Hajba <szilu@symbion.hu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference Cloudillo server binary with SQLite, filesystem, and redb adapters for self-hosted deployment"
homepage = "https://cloudillo.org"
readme = "README.md"
keywords = [
"cloudillo",
"server",
"self-hosted",
"federation",
]
categories = [
"web-programming",
"network-programming",
]
license = "LGPL-3.0-only"
repository = "https://github.com/cloudillo/cloudillo-rs"
[[bin]]
name = "cloudillo-server"
path = "src/main.rs"
[dependencies.cloudillo]
version = "0.8.12"
[dependencies.cloudillo-auth-adapter-sqlite]
version = "0.8.12"
[dependencies.cloudillo-blob-adapter-fs]
version = "0.8.12"
[dependencies.cloudillo-crdt-adapter-redb]
version = "0.8.12"
[dependencies.cloudillo-meta-adapter-sqlite]
version = "0.8.12"
[dependencies.cloudillo-rtdb-adapter-redb]
version = "0.8.12"
[dependencies.mimalloc]
version = "0.1"
[dependencies.tokio]
version = "1.50.0"
features = [
"rt",
"rt-multi-thread",
"macros",
"fs",
]
[lints.clippy]
doc_markdown = "allow"
expect_used = "deny"
literal_string_with_formatting_args = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "deny"
return_self_not_must_use = "allow"
similar_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unused_async = "allow"
unwrap_used = "deny"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
ambiguous_negative_literals = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unused_lifetimes = "warn"