2023-03-31 23:25:20 +02:00
|
|
|
[package]
|
|
|
|
name = "bitque"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "JIRS (Simplified JIRA in Rust) Actix server"
|
|
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
|
|
|
|
|
|
|
[features]
|
2023-04-03 16:08:53 +02:00
|
|
|
cloud-storage = ["cloud-storage-actor"]
|
2023-03-31 23:25:20 +02:00
|
|
|
local-storage = ["filesystem-actor"]
|
|
|
|
default = ["local-storage"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix = { version = "0" }
|
2023-04-01 22:31:57 +02:00
|
|
|
actix-rt = { version = "2" }
|
|
|
|
actix-web = { version = "4" }
|
2023-04-02 22:34:12 +02:00
|
|
|
cloud-storage-actor = { workspace = true, optional = true }
|
2023-03-31 23:25:20 +02:00
|
|
|
bitque-config = { workspace = true, features = ["web", "websocket", "local-storage", "hi", "database"] }
|
|
|
|
bitque-data = { workspace = true, features = ["backend"] }
|
|
|
|
database-actor = { workspace = true }
|
|
|
|
dotenv = { version = "*" }
|
|
|
|
filesystem-actor = { workspace = true, optional = true }
|
|
|
|
futures = { version = "*" }
|
|
|
|
highlight-actor = { workspace = true }
|
|
|
|
libc = { version = "0.2.0", default-features = false }
|
|
|
|
mail-actor = { workspace = true }
|
|
|
|
openssl-sys = { version = "*", features = ["vendored"] }
|
|
|
|
serde = { version = "*", features = ["derive"] }
|
|
|
|
serde_json = { version = ">=0.8.0, <2.0" }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
toml = { version = "0.7.3" }
|
2023-04-01 22:31:57 +02:00
|
|
|
tracing = "0"
|
|
|
|
tracing-subscriber = { version = "0", features = ['env-filter', 'thread_local', 'serde_json'] }
|
2023-03-31 23:25:20 +02:00
|
|
|
web-actor = { workspace = true, features = ["local-storage"] }
|
|
|
|
websocket-actor = { workspace = true }
|