2020-12-24 16:24:04 +01:00
|
|
|
[package]
|
2023-03-31 23:25:20 +02:00
|
|
|
name = "bitque-config"
|
2020-12-24 16:24:04 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
|
|
edition = "2018"
|
2023-04-04 17:14:31 +02:00
|
|
|
description = "BITQUE (Simplified JIRA in Rust) shared data types"
|
2023-03-31 23:25:20 +02:00
|
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
2020-12-24 16:24:04 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
|
|
|
|
|
|
|
[lib]
|
2023-03-31 23:25:20 +02:00
|
|
|
name = "bitque_config"
|
2020-12-24 16:24:04 +01:00
|
|
|
path = "./src/lib.rs"
|
|
|
|
|
|
|
|
[features]
|
2023-04-03 16:08:53 +02:00
|
|
|
cloud-storage = ["rust-s3"]
|
2020-12-24 16:24:04 +01:00
|
|
|
local-storage = []
|
|
|
|
database = []
|
|
|
|
hi = []
|
|
|
|
mail = []
|
2023-04-03 16:08:53 +02:00
|
|
|
web = ["cloud-storage", "local-storage"]
|
2020-12-24 16:24:04 +01:00
|
|
|
websocket = []
|
2021-08-12 16:10:30 +02:00
|
|
|
default = ["local-storage", "database", "hi", "mail", "web", "websocket"]
|
2020-12-24 16:24:04 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2021-08-12 16:10:30 +02:00
|
|
|
serde = { version = "*" }
|
2020-12-24 16:24:04 +01:00
|
|
|
toml = { version = "*" }
|
2023-04-02 22:41:40 +02:00
|
|
|
rust-s3 = { version = "*", optional = true }
|
|
|
|
tracing = { version = "*" }
|