-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (35 loc) · 1.03 KB
/
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
39
40
41
42
[package]
name = "hyperdrive-wasm"
# This version will be overwritten by the build script to match the version in
# the crate's package.json which is managed by changesets.
version = "0.15.3"
edition = "2021"
authors = [
"Ryan Goree <[email protected]>",
"Danny Delott <[email protected]>",
"Matt Brown <[email protected]>",
]
license = "AGPL-3.0"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
# external
console_error_panic_hook = { version = "0.1.7", optional = true }
const-hex = "1.12.0"
ethers = { version = "2.0.14", default-features = false }
js-sys = "0.3.69"
wasm-bindgen = "0.2.92"
# needed to enable the "js" feature for compatibility with wasm,
# see https://docs.rs/getrandom/#webassembly-support
getrandom = { version = "0.2", features = ["js"] }
# internal
fixedpointmath = "0.18.1"
hyperdrive-math = "0.18.1"
hyperdrive-wrappers = "0.18.1"
# workspace
delv-core = { path = "../delv-core" }
ts-macro = { path = "../ts-macro" }
[dev-dependencies]
wasm-bindgen-test = "0.3.36"