bitque/jirs-data/Cargo.toml

28 lines
657 B
TOML
Raw Normal View History

2020-03-28 21:41:16 +01:00
[package]
name = "jirs-data"
version = "0.1.0"
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
edition = "2018"
2020-03-31 14:28:30 +02:00
description = "JIRS (Simplified JIRA in Rust) shared data types"
repository = "https://gitlab.com/adrian.wozniak/jirs"
license = "MPL-2.0"
#license-file = "../LICENSE"
2020-03-28 21:41:16 +01:00
[lib]
name = "jirs_data"
path = "./src/lib.rs"
2020-04-01 13:29:43 +02:00
[features]
backend = [ "diesel" ]
2020-03-28 21:41:16 +01:00
[dependencies]
serde = "*"
serde_json = "*"
chrono = { version = "*", features = [ "serde" ] }
uuid = { version = ">=0.7.0, <0.9.0", features = ["serde"] }
2020-04-01 13:29:43 +02:00
[dependencies.diesel]
optional = true
version = "1.4.4"
features = [ "unstable", "postgres", "numeric", "extras", "uuidv07" ]