Prepare for a Cargo publish

This commit is contained in:
Jeremy Wall 2023-01-02 21:05:34 -06:00
parent bc8854b4dd
commit 9a1d7fe2ee
2 changed files with 8 additions and 1 deletions

View File

@ -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"]
async = ["sycamore/suspense"]

5
README.md Normal file
View File

@ -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.