-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (29 loc) · 873 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
[package]
name = "seed_hooks"
version = "0.1.5"
authors = ["rebo <[email protected]>"]
edition = "2018"
description = "Local state for Seed web apps"
license = "Apache-2.0 OR MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html66========68
[dependencies]
seed = { git = "https://github.com/seed-rs/seed", rev = "0a538f0" }
# seed = "^0.6.0"
# seed = {path = "../seed"}
# atomic_hooks = "0.1.0"
# atomic_hooks = { path = "../atom_state"}
atomic_hooks = { git = "https://github.com/rebo/atomic_hooks" }
gloo-timers = { version = "0.2.1", features = ["futures"] }
lazy_static = "1.4.0"
wasm-bindgen = "^0.2.62"
derive_more = "0.99.5"
[dev-dependencies]
wasm-bindgen-test = "0.3.12"
[dependencies.web-sys]
version = "^0.3.39"
features = [
'HtmlElement',
"HtmlDocument",
"HtmlCollection",
"HtmlStyleElement",
]