-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (65 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
68 lines (65 loc) · 1.64 KB
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
61
62
63
64
65
66
67
68
[workspace]
members = [
"book-examples",
"packages/*",
"packages/*/example",
"packages/*/tests/*",
"scripts",
]
resolver = "2"
[workspace.package]
authors = ["Rust for Web <info@rustforweb.org>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/RustForWeb/floating-ui"
version = "0.7.0"
[workspace.dependencies]
cfg-if = "1.0.0"
console_error_panic_hook = "0.1.7"
console_log = "1.0.0"
dioxus = "0.7.0"
dyn_derive = "0.3.4"
dyn_std = "0.3.3"
floating-ui-core = { path = "./packages/core", version = "0.7.0" }
floating-ui-dioxus = { path = "./packages/dioxus", version = "0.7.0" }
floating-ui-dom = { path = "./packages/dom", version = "0.7.0" }
floating-ui-leptos = { path = "./packages/leptos", version = "0.7.0" }
floating-ui-utils = { path = "./packages/utils", version = "0.7.0" }
floating-ui-yew = { path = "./packages/yew", version = "0.7.0" }
leptos = "0.8.0"
leptos-node-ref = "0.2.0"
leptos_router = "0.8.0"
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.22.0"
yew-router = "0.19.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",
"VisualViewport",
"Window",
]