Skip to content

Commit

Permalink
Merge pull request #17 from Horusiath/update-v0.18
Browse files Browse the repository at this point in the history
Update v0.18
  • Loading branch information
Horusiath authored Mar 28, 2024
2 parents 3991953 + d6ee11d commit 6e15ef1
Show file tree
Hide file tree
Showing 8 changed files with 1,258 additions and 329 deletions.
538 changes: 285 additions & 253 deletions Cargo.lock

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ readme = "./README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
yrs = "0.17"
y-sync = { version = "0.4", features = ["net"] }
yrs = "0.18.2"
warp = "0.3"
futures-util = { version = "0.3", features = ["sink"] }
tokio = { version = "1.34", features = ["rt","net","sync","macros"] }
tokio = { version = "1.34", features = ["rt", "net", "sync", "macros"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
log = "0.4"
tracing = { version = "0.1", features = ["log"] }
tokio-util = { version = "0.7.10", features = ["codec"] }

[dev-dependencies]
tokio-tungstenite = "0.20"
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.21"
tokio = { version = "1", features = ["full"] }
bytes = "1.6"
4 changes: 2 additions & 2 deletions examples/code-mirror/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ use std::sync::Arc;
use tokio::sync::{Mutex, RwLock};
use warp::ws::{WebSocket, Ws};
use warp::{Filter, Rejection, Reply};
use y_sync::awareness::Awareness;
use y_sync::net::BroadcastGroup;
use yrs::sync::Awareness;
use yrs::{Doc, Text, Transact};
use yrs_warp::broadcast::BroadcastGroup;
use yrs_warp::ws::{WarpSink, WarpStream};
use yrs_warp::AwarenessRef;

Expand Down
Loading

0 comments on commit 6e15ef1

Please sign in to comment.