33 lines
679 B
TOML
33 lines
679 B
TOML
[package]
|
|
name = "helios-ts"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2.84"
|
|
wasm-bindgen-futures = "0.4.33"
|
|
serde-wasm-bindgen = "0.4.5"
|
|
console_error_panic_hook = "0.1.7"
|
|
|
|
ethers = "1.0.0"
|
|
hex = "0.4.3"
|
|
serde = { version = "1.0.143", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
|
|
client = { path = "../client" }
|
|
common = { path = "../common" }
|
|
consensus = { path = "../consensus" }
|
|
execution = { path = "../execution" }
|
|
config = { path = "../config" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"console",
|
|
]
|