Some checks failed
🏗️ Build and Deploy / setup (push) Successful in 1m10s
🏗️ Build and Deploy / lint (push) Successful in 34s
🏗️ Build and Deploy / format (push) Successful in 38s
🏗️ Build and Deploy / typecheck (push) Successful in 33s
🏗️ Build and Deploy / build_and_deploy (push) Failing after 1m53s
19 lines
520 B
TOML
19 lines
520 B
TOML
[package]
|
|
name = "template"
|
|
version = "0.1.0"
|
|
authors = ["Max Richter <jim-x@web.de>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = { version = "0.1.7", optional = true }
|
|
macros = { version = "0.1.0", path = "../../../../packages/macros" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
utils = { version = "0.1.0", path = "../../../../packages/utils" }
|
|
web-sys = { version = "0.3.69", features = ["console"] }
|