22 lines
593 B
TOML
22 lines
593 B
TOML
[package]
|
|
name = "jirs-data"
|
|
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_data"
|
|
path = "./src/lib.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = "*"
|
|
serde_json = "*"
|
|
chrono = { version = "*", features = [ "serde" ] }
|
|
uuid = { version = ">=0.7.0, <0.9.0", features = ["serde"] }
|