2020-12-24 16:24:04 +01:00
|
|
|
[package]
|
|
|
|
name = "jirs-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/jirs"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "jirs_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 = []
|
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 = "*" }
|
|
|
|
|
|
|
|
# Amazon S3
|
|
|
|
[dependencies.rusoto_s3]
|
|
|
|
optional = true
|
2021-08-13 14:01:00 +02:00
|
|
|
version = "0.47.0"
|
2020-12-24 16:24:04 +01:00
|
|
|
|
|
|
|
[dependencies.rusoto_core]
|
|
|
|
optional = true
|
2021-08-13 14:01:00 +02:00
|
|
|
version = "0.47.0"
|
2020-12-24 16:24:04 +01:00
|
|
|
|
|
|
|
[dependencies.rusoto_signature]
|
|
|
|
optional = true
|
2021-08-13 14:01:00 +02:00
|
|
|
version = "0.47.0"
|