From 8f6da5586401cb60cfb73b5c74a2152afa3ddbfb Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 17 Jul 2023 23:06:48 -0700 Subject: c@e frontend for the index page of ci.butactuallyin.space --- ci-wasm-frontend/Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ci-wasm-frontend/Cargo.toml (limited to 'ci-wasm-frontend/Cargo.toml') diff --git a/ci-wasm-frontend/Cargo.toml b/ci-wasm-frontend/Cargo.toml new file mode 100644 index 0000000..6acbf49 --- /dev/null +++ b/ci-wasm-frontend/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "ci-wasm-frontend" +version = "0.0.1" +authors = [ "iximeow " ] +license = "0BSD" +edition = "2021" + +[[bin]] +name = "ci_wasm_frontend" +path = "src/main.rs" + +[dependencies] +fastly = "*" +fastly-shared = "*" +fastly-sys = "*" +ci-lib-core = { path = "../ci-lib-core" } +ci-lib-web = { path = "../ci-lib-web" } +rusqlite = { version = "0.26", features = ["bundled", "wasm32-wasi-vfs"] } +sqlite-vfs = "*" +rand = "*" +libc = "*" + +[patch.crates-io] +rusqlite = { version = "0.26", git = "https://github.com/rkusa/rusqlite.git", branch = "wasi" } +libsqlite3-sys = { version = "0.23", git = "https://github.com/rkusa/rusqlite.git", branch = "wasi" } -- cgit v1.1