Basic Calc functions

This commit is contained in:
Malte Schröder
2025-12-19 18:55:59 +01:00
commit a8103a7c6e
11 changed files with 6800 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "mcalc"
version = "0.1.0"
authors = ["malxte"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.7.1", features = [] }
[features]
default = ["desktop"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]