bitque/jirs-client/Cargo.toml

47 lines
955 B
TOML
Raw Normal View History

2020-03-27 12:17:27 +01:00
[package]
name = "jirs-client"
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) WASM client"
repository = "https://gitlab.com/adrian.wozniak/jirs"
license = "MPL-2.0"
#license-file = "../LICENSE"
2020-03-27 12:17:27 +01:00
[lib]
2020-03-29 19:56:55 +02:00
crate-type = ["cdylib", "rlib"]
2020-03-27 12:17:27 +01:00
name = "jirs_client"
path = "./src/lib.rs"
[dependencies]
2020-03-30 08:16:26 +02:00
jirs-data = { path = "../jirs-data" }
seed = { version = "*" }
serde = "*"
serde_json = "*"
2020-04-05 15:15:09 +02:00
bincode = "1.2.1"
2020-03-30 08:16:26 +02:00
chrono = { version = "*", features = [ "serde" ] }
uuid = { version = "*", features = [ "serde" ] }
wasm-bindgen = "*"
2020-03-30 14:26:25 +02:00
futures = "^0.1.26"
2020-04-05 15:15:09 +02:00
lazy_static = "*"
[dependencies.js-sys]
js-sys = "*"
2020-03-30 14:26:25 +02:00
[dependencies.web-sys]
version = "*"
features = [
2020-03-31 22:05:18 +02:00
"Window",
"DataTransfer",
"DragEvent",
"HtmlDivElement",
2020-04-02 16:14:07 +02:00
"DomRect",
"HtmlDocument",
"Document",
2020-04-05 15:15:09 +02:00
"Selection",
"CssStyleDeclaration",
"WebSocket",
"BinaryType",
"Blob",
2020-03-30 14:26:25 +02:00
]