hocuspocus-rs 0.1.1

A Rust implementation of the Hocuspocus protocol (Yjs over WebSockets)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "hocuspocus-rs"
version = "0.1.1"
authors = ["Jagtesh Chadha"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the Hocuspocus protocol (Yjs over WebSockets)"
readme = "README.md"
keywords = [
    "yjs",
    "crdt",
    "hocuspocus",
    "sync",
    "websocket",
]
categories = [
    "network-programming",
    "web-programming",
]
license = "BSD-3-Clause"
repository = "https://github.com/jagtesh/hocuspocus-rs"

[features]
default = []
server = ["axum"]
sqlite = ["rusqlite"]

[lib]
name = "hocuspocus_rs"
path = "src/lib.rs"

[[example]]
name = "server"
path = "examples/server.rs"

[dependencies.axum]
version = "0.7"
features = ["ws"]
optional = true

[dependencies.dashmap]
version = "5.5"

[dependencies.directories]
version = "5.0"

[dependencies.futures-util]
version = "0.3"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
optional = true

[dependencies.tokio]
version = "1.36"
features = [
    "macros",
    "rt-multi-thread",
    "signal",
    "fs",
    "sync",
    "time",
]

[dependencies.tracing]
version = "0.1"

[dependencies.yrs]
version = "0.19"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]