30 lines
711 B
TOML
30 lines
711 B
TOML
[package]
|
|
name = "bitque-config"
|
|
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 = "bitque_config"
|
|
path = "./src/lib.rs"
|
|
|
|
[features]
|
|
cloud-storage = ["rust-s3"]
|
|
local-storage = []
|
|
database = []
|
|
hi = []
|
|
mail = []
|
|
web = ["cloud-storage", "local-storage"]
|
|
websocket = []
|
|
default = ["local-storage", "database", "hi", "mail", "web", "websocket"]
|
|
|
|
[dependencies]
|
|
serde = { version = "*" }
|
|
toml = { version = "*" }
|
|
rust-s3 = { version = "*", optional = true }
|
|
tracing = { version = "*" }
|