Skip to content

Commit

Permalink
rename crate, add license, update metadata, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 committed Jun 24, 2024
1 parent acba486 commit 1961cea
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "dioxus-library-template"
version = "0.2.0"
name = "dioxus-use-computed"
version = "0.1.0"
edition = "2021"
description = "Library for Dioxus 🧬"
license = "MIT"
description = "Run resource-expensive computations in the most efficient way possible in Dioxus 🧬 apps 🦀"
readme = "./README.md"
homepage = "https://github.com/dioxus-community/dioxus-library-template"
repository = "https://github.com/dioxus-community/dioxus-library-template"
homepage = "https://github.com/dioxus-community/dioxus-use-computed"
repository = "https://github.com/dioxus-community/dioxus-use-computed"
keywords = ["dioxus"]
categories = ["gui"]

Expand Down
9 changes: 9 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) Marc Espín Sanz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![Discord Server](https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square)](https://discord.gg/sKJSVNSCDJ)

# `use_computed` 🦀🧠
# `dioxus-use-computed` 🦀🧠

Alternative to the built-in hook `use_memo` and `use_reactive` of [Dioxus](https://dioxuslabs.com/).

Expand Down
2 changes: 1 addition & 1 deletion examples/demo.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use dioxus::prelude::*;
use dioxus_library_template::prelude::*;
use dioxus_use_computed::prelude::*;

fn main() {
launch(app);
Expand Down

0 comments on commit 1961cea

Please sign in to comment.