bitque/crates/websocket-actor/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "websocket-actor"
version = "0.1.0"
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
edition = "2018"
description = "JIRS (Simplified JIRA in Rust) shared data types"
2023-03-31 23:25:20 +02:00
repository = "https://gitlab.com/adrian.wozniak/bitque"
license = "MPL-2.0"
#license-file = "../LICENSE"
[lib]
name = "websocket_actor"
path = "./src/lib.rs"
[dependencies]
2023-03-31 23:25:20 +02:00
actix = { version = "0.13.0" }
async-trait = { version = "*" }
2021-08-13 12:42:29 +02:00
bincode = { version = "*" }
2023-03-31 23:25:20 +02:00
bitque-config = { workspace = true, features = ["websocket"] }
bitque-data = { workspace = true, features = ["backend"] }
common = { workspace = true }
comrak = { version = "*" }
database-actor = { workspace = true }
flate2 = { version = "*" }
futures = { version = "0.3.8" }
2023-03-31 23:25:20 +02:00
highlight-actor = { workspace = true }
lazy_static = { version = "*" }
libc = { version = "0.2.0", default-features = false }
2023-03-31 23:25:20 +02:00
mail-actor = { workspace = true }
openssl-sys = { version = "*", features = ["vendored"] }
serde = { version = "*" }
syntect = { version = "*" }
2023-03-31 23:25:20 +02:00
toml = { version = "*" }
uuid = { version = "1.3.0", features = ["serde", "v4", "v5"] }