diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -7,6 +7,10 @@ edition = "2021" [lib] crate-type = ["cdylib", "rlib"] +[[bin]] +name = "tel" +path = "src/main.rs" + [profile.release] opt-level = 2 codegen-units = 1 @@ -44,4 +48,5 @@ web-sys = { version = "*", features = ["Document", "Window", "Element", "HtmlCan [target.'cfg(not(target_arch = "wasm32"))'.dependencies] env_logger = "*" sdl2 = "*" -kira = "0.9.6"
\ No newline at end of file +kira = "0.9.6" +tokio = { version = "*", features = ["full"] }
\ No newline at end of file |
