bitque/crates/web/Cargo.toml

74 lines
1.9 KiB
TOML
Raw Normal View History

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
[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"] }
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 = "*" }
futures = { version = "0.3.6" }
2023-03-31 23:25:20 +02:00
js-sys = { version = "*", default-features = false }
seed = { version = "0", features = ['serde-wasm-bindgen'] }
serde = { version = "1", features = ['derive'] }
2023-03-31 23:25:20 +02:00
serde_json = { version = "*" }
tracing = { version = "0.1.37" }
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 = "*" }
wee_alloc = { version = "*", features = ["static_array_backend"] }
wasm-sockets = { version = "1", features = [] }
strum = { version = "*" }
2020-03-30 14:26:25 +02:00
[dependencies.web-sys]
2020-10-18 10:35:41 +02:00
version = "*"
default-features = false
2020-03-30 14:26:25 +02:00
features = [
# elements
2020-03-31 22:05:18 +02:00
"Window",
"HtmlDivElement",
2020-04-02 16:14:07 +02:00
"HtmlDocument",
"Document",
"HtmlBodyElement",
# types
"DataTransfer",
"DomRect",
2020-04-05 15:15:09 +02:00
"Selection",
"CssStyleDeclaration",
"WebSocket",
"BinaryType",
"Blob",
"AddEventListenerOptions",
2020-05-05 08:33:40 +02:00
"File",
"FileList",
"FormData",
"FileReader",
"FileReaderSync",
2020-06-16 21:15:08 +02:00
"Range",
# events
"EventTarget",
2020-04-06 08:38:08 +02:00
"ErrorEvent",
"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 = "*" }