37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "websocket-actor"
|
|
version = "0.1.0"
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
edition = "2018"
|
|
description = "BITQUE (Simplified JIRA in Rust) shared data types"
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
|
license = "MPL-2.0"
|
|
#license-file = "../LICENSE"
|
|
|
|
[lib]
|
|
name = "websocket_actor"
|
|
path = "./src/lib.rs"
|
|
|
|
[dependencies]
|
|
actix = { version = "0.13.0" }
|
|
actix-web = { version = "4" }
|
|
actix-web-actors = { version = "4" }
|
|
async-trait = { version = "*" }
|
|
bincode = { version = "*" }
|
|
bitque-config = { workspace = true, features = ["websocket"] }
|
|
bitque-data = { workspace = true, features = ["backend"] }
|
|
comrak = { version = "*" }
|
|
database-actor = { workspace = true }
|
|
flate2 = { version = "*" }
|
|
futures = { version = "0.3.8" }
|
|
highlight-actor = { workspace = true }
|
|
lazy_static = { version = "*" }
|
|
libc = { version = "0.2.0", default-features = false }
|
|
mail-actor = { workspace = true }
|
|
openssl-sys = { version = "*", features = ["vendored"] }
|
|
serde = { version = "*" }
|
|
syntect = { version = "*" }
|
|
toml = { version = "*" }
|
|
tracing = { version = "0.1.37" }
|
|
uuid = { version = "1.3.0", features = ["serde", "v4", "v5"] }
|