2020-03-27 12:17:27 +01:00
|
|
|
[package]
|
2023-03-31 23:25:20 +02:00
|
|
|
name = "bitque_client"
|
2020-03-27 12:17:27 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Adrian Wozniak <adrian.wozniak@ita-prog.pl>"]
|
|
|
|
edition = "2018"
|
2023-04-04 17:14:31 +02:00
|
|
|
description = "BITQUE (Simplified JIRA in Rust) WASM client"
|
2023-03-31 23:25:20 +02:00
|
|
|
repository = "https://gitlab.com/adrian.wozniak/bitque"
|
2020-03-31 14:28:30 +02:00
|
|
|
license = "MPL-2.0"
|
|
|
|
#license-file = "../LICENSE"
|
2020-03-27 12:17:27 +01:00
|
|
|
|
2021-01-06 18:47:54 +01:00
|
|
|
[features]
|
|
|
|
print-model = []
|
|
|
|
default = []
|
|
|
|
|
2020-03-27 12:17:27 +01:00
|
|
|
[dependencies]
|
2020-10-18 10:35:41 +02:00
|
|
|
bincode = { version = "*" }
|
2023-03-31 23:25:20 +02:00
|
|
|
bitque-data = { workspace = true, features = ["frontend"] }
|
2020-10-18 10:35:41 +02:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["serde", "wasmbind"] }
|
2021-10-11 16:56:15 +02:00
|
|
|
console_error_panic_hook = { version = "*" }
|
2023-03-31 23:25:20 +02:00
|
|
|
derive_enum_iter = { workspace = true }
|
|
|
|
derive_enum_primitive = { workspace = true }
|
|
|
|
dotenv = { version = "*" }
|
2023-04-03 16:08:53 +02:00
|
|
|
futures = { version = "0.3.6" }
|
2023-03-31 23:25:20 +02:00
|
|
|
js-sys = { version = "*", default-features = false }
|
2023-04-05 15:03:00 +02:00
|
|
|
seed = { version = "0", features = [] }
|
2023-04-03 16:08:53 +02:00
|
|
|
serde = { version = "1", features = ['derive'] }
|
2023-03-31 23:25:20 +02:00
|
|
|
serde_json = { version = "*" }
|
|
|
|
tracing = { version = "0.1.37" }
|
2023-04-03 16:08:53 +02:00
|
|
|
tracing-subscriber = { version = "0.3.16" }
|
|
|
|
tracing-subscriber-wasm = { version = "0.1.0" }
|
2023-03-31 23:25:20 +02:00
|
|
|
uuid = { version = "1.3.0", features = ["serde"] }
|
|
|
|
wasm-bindgen = { version = "*", features = ["enable-interning"] }
|
|
|
|
wasm-bindgen-futures = { version = "*" }
|
2023-04-05 15:03:00 +02:00
|
|
|
wee_alloc = { version = "*", features = [] }
|
2023-04-03 16:08:53 +02:00
|
|
|
wasm-sockets = { version = "1", features = [] }
|
|
|
|
strum = { version = "*" }
|
2023-04-05 15:03:00 +02:00
|
|
|
derive_more = { version = "*" }
|
2020-03-30 14:26:25 +02:00
|
|
|
|
|
|
|
[dependencies.web-sys]
|
2020-10-18 10:35:41 +02:00
|
|
|
version = "*"
|
2020-08-10 16:45:30 +02:00
|
|
|
default-features = false
|
2020-03-30 14:26:25 +02:00
|
|
|
features = [
|
2020-04-12 13:21:47 +02:00
|
|
|
# elements
|
2020-03-31 22:05:18 +02:00
|
|
|
"Window",
|
|
|
|
"HtmlDivElement",
|
2020-04-02 16:14:07 +02:00
|
|
|
"HtmlDocument",
|
|
|
|
"Document",
|
2020-04-12 13:21:47 +02:00
|
|
|
"HtmlBodyElement",
|
|
|
|
# types
|
|
|
|
"DataTransfer",
|
|
|
|
"DomRect",
|
2020-04-05 15:15:09 +02:00
|
|
|
"Selection",
|
|
|
|
"CssStyleDeclaration",
|
|
|
|
"WebSocket",
|
|
|
|
"BinaryType",
|
|
|
|
"Blob",
|
2020-04-12 13:21:47 +02:00
|
|
|
"AddEventListenerOptions",
|
2020-05-05 08:33:40 +02:00
|
|
|
"File",
|
|
|
|
"FileList",
|
|
|
|
"FormData",
|
|
|
|
"FileReader",
|
|
|
|
"FileReaderSync",
|
2023-04-06 16:02:05 +02:00
|
|
|
"DocumentFragment",
|
2020-06-16 21:15:08 +02:00
|
|
|
"Range",
|
2020-04-12 13:21:47 +02:00
|
|
|
# events
|
|
|
|
"EventTarget",
|
2020-04-06 08:38:08 +02:00
|
|
|
"ErrorEvent",
|
2020-04-12 13:21:47 +02:00
|
|
|
"MessageEvent",
|
|
|
|
"KeyEvent",
|
|
|
|
"KeyboardEvent",
|
|
|
|
"DragEvent",
|
2020-03-30 14:26:25 +02:00
|
|
|
]
|
2020-05-01 23:10:54 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen-test = { version = "*" }
|