-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 812 Bytes
/
Cargo.toml
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
34
35
36
37
38
[package]
name = "rust-wasm-centrality"
version = "0.1.0"
authors = ["Simon Crowe <[email protected]>"]
description = "Display a network graph and cenrality-ranked table of nodes"
license = "MIT"
repository = "https://github.com/simoncrowe/rust-wasm-centrality"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[profile.release]
lto = "thin"
[dependencies]
byteorder = "1.5.0"
console_error_panic_hook = "0.1.7"
console_log ="1.0"
itertools = "0.12.1"
js-sys = "0.3.69"
log = "0.4.21"
rustc-hash = "1.1.0"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6.5"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4.42"
[dependencies.web-sys]
version = "0.3.60"
features = [
"console",
"Performance",
"ReadableStream",
"ReadableStreamDefaultReader",
"Response",
"Window",
]