[package] name = "jirs-data" version = "0.1.0" authors = ["Adrian Wozniak "] 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_data" path = "./src/lib.rs" [features] backend = ["diesel"] frontend = [] [dependencies] serde = "*" serde_json = "*" chrono = { version = "*", features = [ "serde" ] } uuid = { version = ">=0.7.0, <0.9.0", features = ["serde"] } [dependencies.diesel] optional = true version = "1.4.4" features = [ "unstable", "postgres", "numeric", "extras", "uuidv07" ]