Fix lox-wasm dependencies
This commit is contained in:
parent
794f80ab11
commit
5e1a2d8c6d
|
@ -737,8 +737,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"js-sys",
|
||||
"libc",
|
||||
"wasi 0.11.0+wasi-snapshot-preview1",
|
||||
"wasm-bindgen",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1089,6 +1091,7 @@ version = "0.1.0"
|
|||
dependencies = [
|
||||
"chrono",
|
||||
"console_error_panic_hook",
|
||||
"getrandom 0.2.10",
|
||||
"js-sys",
|
||||
"julianday",
|
||||
"lazy_static",
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -10,6 +10,7 @@ license = "MIT"
|
|||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
getrandom = { version = "0.2", features = ["js"] }
|
||||
julianday = "1.2.0"
|
||||
lazy_static = "1.4.0"
|
||||
lox-library = { path = "../lox-library", version = "0.1.0" }
|
||||
|
|
Loading…
Reference in New Issue