enterprise/Cargo.lock

500 lines
22 KiB
Text
Raw Normal View History

2020-01-10 07:26:38 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2020-01-11 07:25:45 +00:00
[[package]]
name = "autocfg"
2020-02-04 14:48:19 +00:00
version = "1.0.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
2020-02-04 14:48:19 +00:00
name = "base-x"
version = "0.2.6"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-08 23:36:17 +00:00
[[package]]
name = "bimap"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-02-09 19:08:36 +00:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "bumpalo"
version = "3.1.2"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "discard"
version = "1.0.4"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-10 07:26:38 +00:00
[[package]]
name = "enterprise"
version = "0.1.0"
dependencies = [
2020-02-04 14:48:19 +00:00
"enterprise-compiler 0.1.0",
2020-02-09 19:08:36 +00:00
"parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"stdweb 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "enterprise-compiler"
version = "0.1.0"
2020-01-11 07:25:45 +00:00
dependencies = [
2020-02-08 23:36:17 +00:00
"bimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"petgraph 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-07 03:55:41 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-17 07:46:03 +00:00
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-08 23:36:17 +00:00
"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-17 07:46:03 +00:00
"symbol 0.1.0",
2020-02-07 03:55:41 +00:00
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
"syn-serde 0.2.0",
2020-01-11 07:25:45 +00:00
]
2020-02-11 07:46:02 +00:00
[[package]]
name = "enterprise-macros"
version = "0.1.0"
dependencies = [
2020-02-17 07:46:03 +00:00
"enterprise-compiler 0.1.0",
2020-02-11 07:46:02 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-17 07:46:03 +00:00
"symbol 0.1.0",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
"syn-serde 0.2.0",
2020-02-17 07:46:03 +00:00
"thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-11 07:46:02 +00:00
]
2020-01-11 07:25:45 +00:00
[[package]]
name = "fixedbitset"
2020-02-04 14:48:19 +00:00
version = "0.2.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-11 00:39:44 +00:00
[[package]]
name = "helloworld"
version = "0.1.0"
dependencies = [
"enterprise 0.1.0",
2020-02-11 07:46:02 +00:00
"enterprise-compiler 0.1.0",
"enterprise-macros 0.1.0",
2020-02-11 00:39:44 +00:00
"stdweb 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "indexmap"
version = "1.3.1"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "itoa"
version = "0.4.5"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "libc"
version = "0.2.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "lock_api"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
name = "log"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "maplit"
version = "1.0.2"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "parking_lot"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "parking_lot_core"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
"redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
name = "petgraph"
2020-02-04 14:48:19 +00:00
version = "0.5.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"fixedbitset 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
2020-01-10 07:26:38 +00:00
[[package]]
name = "proc-macro2"
2020-02-04 14:48:19 +00:00
version = "1.0.8"
2020-01-10 07:26:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
2020-02-09 19:08:36 +00:00
[[package]]
name = "redox_syscall"
version = "0.1.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "rustc_version"
version = "0.2.3"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "ryu"
version = "1.0.2"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "scopeguard"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "semver"
version = "0.9.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "semver-parser"
version = "0.7.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "serde"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
name = "serde_derive"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "serde_json"
version = "1.0.48"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
"ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "sha1"
version = "0.6.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "smallvec"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-08 23:36:17 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "stdweb"
version = "0.4.20"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"stdweb-derive 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"stdweb-internal-macros 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
"stdweb-internal-runtime 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "stdweb-derive"
version = "0.5.3"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "stdweb-internal-macros"
version = "0.2.9"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-04 14:48:19 +00:00
dependencies = [
"base-x 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "stdweb-internal-runtime"
version = "0.1.5"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-11 07:46:02 +00:00
[[package]]
2020-02-17 07:46:03 +00:00
name = "symbol"
version = "0.1.0"
2020-02-11 07:46:02 +00:00
dependencies = [
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-17 07:46:03 +00:00
"spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-11 07:46:02 +00:00
]
2020-01-11 07:25:45 +00:00
[[package]]
name = "syn"
2020-02-04 14:48:19 +00:00
version = "1.0.14"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "syn-serde"
version = "0.2.0"
dependencies = [
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-02-11 07:46:02 +00:00
[[package]]
name = "thiserror"
2020-02-17 07:46:03 +00:00
version = "1.0.11"
2020-02-11 07:46:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-17 07:46:03 +00:00
"thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-11 07:46:02 +00:00
]
[[package]]
name = "thiserror-impl"
2020-02-17 07:46:03 +00:00
version = "1.0.11"
2020-02-11 07:46:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-02-19 23:46:04 +00:00
[[package]]
name = "todomvc"
version = "0.1.0"
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "unicode-xid"
version = "0.2.0"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
2020-02-04 14:48:19 +00:00
name = "wasm-bindgen"
version = "0.2.58"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "wasm-bindgen-backend"
version = "0.2.58"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"bumpalo 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
2020-02-04 14:48:19 +00:00
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "wasm-bindgen-macro"
version = "0.2.58"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-10 07:26:38 +00:00
]
2020-01-11 07:25:45 +00:00
[[package]]
2020-02-04 14:48:19 +00:00
name = "wasm-bindgen-macro-support"
version = "0.2.58"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2020-02-04 14:48:19 +00:00
"proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
"wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
2020-01-11 07:25:45 +00:00
]
[[package]]
2020-02-04 14:48:19 +00:00
name = "wasm-bindgen-shared"
version = "0.2.58"
2020-01-11 07:25:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-09 19:08:36 +00:00
[[package]]
name = "winapi"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-10 07:26:38 +00:00
[metadata]
2020-02-04 14:48:19 +00:00
"checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
"checksum base-x 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1b20b618342cf9891c292c4f5ac2cde7287cc5c87e87e9c769d617793607dec1"
2020-02-08 23:36:17 +00:00
"checksum bimap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "783204f24fd7724ea274d327619cfa6a6018047bb0561a68aadff6f56787591b"
2020-02-09 19:08:36 +00:00
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2020-02-04 14:48:19 +00:00
"checksum bumpalo 3.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5fb8038c1ddc0a5f73787b130f4cc75151e96ed33e417fde765eb5a81e3532f4"
2020-01-11 07:25:45 +00:00
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-02-09 19:08:36 +00:00
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
2020-02-04 14:48:19 +00:00
"checksum discard 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
"checksum fixedbitset 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"
"checksum indexmap 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b54058f0a6ff80b6803da8faf8997cde53872b38f4023728f6830b06cd3c0dc"
"checksum itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b8b7a7c0c47db5545ed3fef7468ee7bb5b74691498139e4b3f6a20685dc6dd8e"
2020-01-11 07:25:45 +00:00
"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-02-09 19:08:36 +00:00
"checksum libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b"
2020-01-11 07:25:45 +00:00
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
2020-02-04 14:48:19 +00:00
"checksum maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2020-02-09 19:08:36 +00:00
"checksum parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc"
"checksum parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1"
2020-02-04 14:48:19 +00:00
"checksum petgraph 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29c127eea4a29ec6c85d153c59dc1213f33ec74cead30fe4730aecc88cc1fd92"
"checksum proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548"
2020-01-10 07:26:38 +00:00
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
2020-02-09 19:08:36 +00:00
"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
2020-02-04 14:48:19 +00:00
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
2020-02-09 19:08:36 +00:00
"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
2020-02-04 14:48:19 +00:00
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2020-01-11 07:25:45 +00:00
"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
"checksum serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
"checksum serde_json 1.0.48 (registry+https://github.com/rust-lang/crates.io-index)" = "9371ade75d4c2d6cb154141b9752cf3781ec9c05e0e5cf35060e1e70ee7b9c25"
2020-02-04 14:48:19 +00:00
"checksum sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2020-02-09 19:08:36 +00:00
"checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
2020-02-08 23:36:17 +00:00
"checksum spin 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-02-04 14:48:19 +00:00
"checksum stdweb 0.4.20 (registry+https://github.com/rust-lang/crates.io-index)" = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
"checksum stdweb-derive 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
"checksum stdweb-internal-macros 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
"checksum stdweb-internal-runtime 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
"checksum syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5"
2020-02-17 07:46:03 +00:00
"checksum thiserror 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ee14bf8e6767ab4c687c9e8bc003879e042a96fd67a3ba5934eadb6536bef4db"
"checksum thiserror-impl 1.0.11 (registry+https://github.com/rust-lang/crates.io-index)" = "a7b51e1fbc44b5a0840be594fbc0f960be09050f2617e61e6aa43bef97cd3ef4"
2020-01-10 07:26:38 +00:00
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
2020-02-04 14:48:19 +00:00
"checksum wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "5205e9afdf42282b192e2310a5b463a6d1c1d774e30dc3c791ac37ab42d2616c"
"checksum wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "11cdb95816290b525b32587d76419facd99662a07e59d3cdb560488a819d9a45"
"checksum wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "574094772ce6921576fb6f2e3f7497b8a76273b6db092be18fc48a082de09dc3"
"checksum wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "e85031354f25eaebe78bb7db1c3d86140312a911a106b2e29f9cc440ce3e7668"
"checksum wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = "f5e7e61fc929f4c0dddb748b102ebf9f632e2b8d739f2016542b4de2965a9601"
2020-02-09 19:08:36 +00:00
"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"