31 lines
824 B
TOML
31 lines
824 B
TOML
[package]
|
|
name = "bitque-config"
|
|
version = "0.1.0"
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
edition = "2018"
|
|
description = "JIRS (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]
|
|
aws-s3 = ["rusoto_s3", "rusoto_core", "rusoto_signature"]
|
|
local-storage = []
|
|
database = []
|
|
hi = []
|
|
mail = []
|
|
web = ["aws-s3", "local-storage"]
|
|
websocket = []
|
|
default = ["local-storage", "database", "hi", "mail", "web", "websocket"]
|
|
|
|
[dependencies]
|
|
rusoto_core = { optional = true, version = "0.48.0" }
|
|
rusoto_s3 = { optional = true, version = "0.48.0" }
|
|
rusoto_signature = { optional = true, version = "0.48.0" }
|
|
serde = { version = "*" }
|
|
toml = { version = "*" }
|