-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (31 loc) · 902 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
[package]
name = "etheasy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alloy-core = { version = "0.6.4", features = ["std"] }
alloy-dyn-abi = "0.7.1"
alloy-json-abi = "0.7.2"
uniswap_v3_math = { git = "https://github.com/0xKitsune/uniswap-v3-math", branch = "main" }
base64 = "0.22.0"
chrono = "0.4.37"
gloo = { version = "0.11.0", features = ["events"] }
gloo-console = "0.3.0"
wasm-bindgen = "0.2.73"
lazy_static = "1.4.0"
pest = "2.7.9"
pest_derive = "2.7.9"
web-sys = { version = "0.3.69", features = [
"Element",
"HtmlElement",
"DomRect",
"ScrollIntoViewOptions",
"ScrollBehavior",
] }
yew = { version = "0.21.0", features = ["csr"] }
yew-router = "0.18.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
js-sys = "0.3.69"
yew-hooks = "0.3.1"