36 lines
1.3 KiB
TOML
36 lines
1.3 KiB
TOML
|
[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]
|
||
|
aws-s3 = ["amazon-actor"]
|
||
|
local-storage = ["filesystem-actor"]
|
||
|
default = ["local-storage"]
|
||
|
|
||
|
[dependencies]
|
||
|
actix = { version = "0" }
|
||
|
amazon-actor = { workspace = true, optional = true }
|
||
|
bitque-config = { workspace = true, features = ["web", "websocket", "local-storage", "hi", "database"] }
|
||
|
bitque-data = { workspace = true, features = ["backend"] }
|
||
|
common = { workspace = true }
|
||
|
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" }
|
||
|
web-actor = { workspace = true, features = ["local-storage"] }
|
||
|
websocket-actor = { workspace = true }
|