-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
60 lines (57 loc) · 1.2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
members = [
"book-examples",
"packages/*",
"packages/*/example",
"packages/*/tests/*",
"scripts",
]
resolver = "2"
[workspace.package]
authors = ["Rust For Web <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/RustForWeb/floating-ui"
version = "0.2.1"
[workspace.dependencies]
cfg-if = "1.0.0"
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
dyn_derive = "0.3.4"
dyn_std = "0.3.3"
leptos = "0.7.0"
leptos_router = "0.7.0"
leptos-node-ref = "0.0.3"
log = "0.4.22"
send_wrapper = "0.6.0"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
wasm-bindgen = "0.2.93"
wasm-bindgen-test = "0.3.43"
yew = "0.21.0"
yew-router = "0.18.0"
[workspace.dependencies.web-sys]
version = "0.3.70"
features = [
"css",
"AddEventListenerOptions",
"CssStyleDeclaration",
"Document",
"DomRect",
"DomRectList",
"Element",
"Event",
"EventTarget",
"HtmlElement",
"HtmlSlotElement",
"IntersectionObserver",
"IntersectionObserverEntry",
"IntersectionObserverInit",
"Node",
"Range",
"ResizeObserver",
"ResizeObserverEntry",
"Selection",
"ShadowRoot",
"Window",
]