summaryrefslogtreecommitdiff
path: root/ci-wasm-frontend/Cargo.toml
blob: a840d612471c91d28b25777b42ce4ec808404545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "ci-wasm-frontend"
version = "0.0.1"
authors = [ "iximeow <me@iximeow.net>" ]
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" }

[build.release]
lto = "full"