[package]
edition = "2021"
name = "cloudillo-crdt"
version = "0.8.12"
authors = ["Szilárd Hajba <szilu@symbion.hu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CRDT collaborative editing over WebSocket for Cloudillo, using the Yjs protocol"
homepage = "https://cloudillo.org"
readme = "README.md"
keywords = [
"cloudillo",
"crdt",
"collaboration",
"yjs",
"websocket",
]
categories = [
"web-programming",
"concurrency",
]
license = "LGPL-3.0-only"
repository = "https://github.com/cloudillo/cloudillo-rs"
[lib]
name = "cloudillo_crdt"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.cloudillo-core]
version = "0.8.12"
[dependencies.cloudillo-types]
version = "0.8.12"
features = ["server"]
[dependencies.futures]
version = "0.3"
[dependencies.tokio]
version = "1"
features = [
"rt",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.yrs]
version = "0.25"
[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"