From fa3067a16f8ba06ee756eb2b2293be4cb728681d Mon Sep 17 00:00:00 2001 From: brian cully Date: Fri, 26 Dec 2025 12:04:14 -0500 Subject: add bouncing particles --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c17179b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "polyring" +version = "0.1.0" +edition = "2024" +license-file = "LICENSE" + +[lib] +# cdylib for wasm, rlib for integration tests +crate-type = ["cdylib", "rlib"] + +[dependencies] +console_log = "1.0" +log = "0.4" +wasm-bindgen = "0.2" + +[dependencies.web-sys] +features = ["Document", "Element", "HtmlElement", "Node", "Window"] +version = "0.3" -- cgit v1.3