2021-03-13 10:11:40 +00:00
|
|
|
[package]
|
|
|
|
name = "kv"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Arne Keller <arne.keller@posteo.de>"]
|
|
|
|
edition = "2018"
|
2021-03-18 12:20:54 +00:00
|
|
|
homepage = "https://studwww.informatik.kit.edu/~s_keller/kv/"
|
|
|
|
repository = "https://git.scc.kit.edu/uskyk/kv"
|
|
|
|
license = "GPL-3.0+"
|
2021-03-13 10:11:40 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-18 09:53:39 +00:00
|
|
|
console_error_panic_hook = "0.1.6"
|
|
|
|
console_log = "0.2.0"
|
2021-03-13 10:43:24 +00:00
|
|
|
itertools = "0.10.0"
|
2021-03-18 09:53:39 +00:00
|
|
|
log = "0.4.14"
|
2021-03-20 21:51:19 +00:00
|
|
|
svg_fmt = { git = "https://github.com/FliegendeWurst/rust_debug", rev = "c664b5d24dbcaf6e6fdd7c329dde231c5b05377e" }
|
2021-03-18 09:53:39 +00:00
|
|
|
wasm-bindgen = "0.2.71"
|
2021-03-19 17:14:41 +00:00
|
|
|
web-sys = { version = "0.3.48", features = ["Window", "Document", "Location", "HtmlCollection", "HtmlElement", "HtmlSelectElement", "CssStyleDeclaration", "HtmlTextAreaElement", "HtmlInputElement"] }
|