35 lines
875 B
TOML
35 lines
875 B
TOML
[package]
|
|
name = "realtime-entity"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
collab = { version = "0.1.0" }
|
|
collab-entity = { version = "0.1.0" }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
bytes = { version = "1.5", features = ["serde"] }
|
|
anyhow = "1.0.79"
|
|
actix = { version = "0.13", optional = true }
|
|
bincode.workspace = true
|
|
tokio-tungstenite = { version = "0.20.1", optional = true }
|
|
prost = "0.12.3"
|
|
database-entity.workspace = true
|
|
yrs.workspace = true
|
|
thiserror = "1.0.56"
|
|
realtime-protocol.workspace = true
|
|
websocket.workspace = true
|
|
serde_repr = "0.1"
|
|
|
|
[build-dependencies]
|
|
protoc-bin-vendored = { version = "3.0" }
|
|
prost-build = "0.12.3"
|
|
|
|
[features]
|
|
actix_message = ["actix"]
|
|
tungstenite = ["tokio-tungstenite"]
|