Files
IronCalc/webapp/app.ironcalc.com/server/Cargo.toml
Nicolás Hatcher 8215cfc9fb UPDATE: split the webapp in a widget and the app itself
This splits the webapp in:

* IronCalc (the widget to be published on npmjs)
* The frontend for our "service"
* Adds "dummy code" for the backend using sqlite
2025-01-17 19:27:55 +01:00

15 lines
230 B
TOML

[package]
name = "ironcalc_server"
version = "0.3.0"
edition = "2021"
[dependencies]
rocket = "0.5"
rand = "0.8"
ironcalc = { path = "../../../xlsx/"}
[dependencies.rocket_db_pools]
version = "0.2.0"
features = ["sqlx_sqlite"]