-
Notifications
You must be signed in to change notification settings - Fork 356
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 841 Bytes
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
29
30
31
32
33
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[package]
name = "ruvector-graph-transformer-wasm"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "WASM bindings for ruvector-graph-transformer: proof-gated graph attention in the browser"
readme = "README.md"
keywords = ["wasm", "graph-transformer", "attention", "verified", "webassembly"]
categories = ["wasm", "science", "mathematics"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2"
serde-wasm-bindgen = "0.6"
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
js-sys = "0.3"
[dev-dependencies]
wasm-bindgen-test = "0.3"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1