This commit is contained in:
Arne Keller 2021-03-20 22:42:18 +01:00
parent e93c3c7c2b
commit 519779c543
2 changed files with 11 additions and 2 deletions

11
Cargo.lock generated
View File

@ -108,10 +108,19 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "rustversion"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd"
[[package]]
name = "svg_fmt"
version = "0.4.0"
source = "git+https://github.com/FliegendeWurst/rust_debug?rev=ee7001bfb4bd894777a8a550356230cd309577e0#ee7001bfb4bd894777a8a550356230cd309577e0"
source = "git+https://github.com/FliegendeWurst/rust_debug?rev=b0b759bc94a3c1a319c9aa63bae2b21820ab7061#b0b759bc94a3c1a319c9aa63bae2b21820ab7061"
dependencies = [
"rustversion",
]
[[package]]
name = "syn"

View File

@ -14,6 +14,6 @@ console_error_panic_hook = "0.1.6"
console_log = "0.2.0"
itertools = "0.10.0"
log = "0.4.14"
svg_fmt = { git = "https://github.com/FliegendeWurst/rust_debug", rev = "ee7001bfb4bd894777a8a550356230cd309577e0" }
svg_fmt = { git = "https://github.com/FliegendeWurst/rust_debug", rev = "b0b759bc94a3c1a319c9aa63bae2b21820ab7061" }
wasm-bindgen = "0.2.71"
web-sys = { version = "0.3.48", features = ["Window", "Document", "Location", "HtmlCollection", "HtmlElement", "HtmlSelectElement", "CssStyleDeclaration", "HtmlTextAreaElement", "HtmlInputElement"] }