From 9a1d7fe2ee64805f0a11493f62f72d43fc6d030e Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 2 Jan 2023 21:05:34 -0600 Subject: [PATCH] Prepare for a Cargo publish --- Cargo.toml | 4 +++- README.md | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index fba5160..47e23f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,8 @@ name = "sycamore-state" version = "0.1.0" edition = "2021" +description = "A simple Sycamore state management library" +license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,4 +15,4 @@ wasm-bindgen = "0.2.83" version = "0.8" [features] -async = ["sycamore/suspense"] \ No newline at end of file +async = ["sycamore/suspense"] diff --git a/README.md b/README.md new file mode 100644 index 0000000..a01850d --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# A Sycamore state management library + +Based on a simple messaging setup with sycamore selectors to limit superflous updates. + +Very minimal and simple for the moment.