-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 1.2 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
[package]
name = "leptos-struct-table"
version = "0.18.0"
edition = "2024"
categories = ["gui", "web-programming", "wasm"]
description = "Generate a complete batteries included leptos data table component from a struct definition."
exclude = ["examples/", "tests/"]
keywords = ["leptos", "table", "data-sheet", "data-grid"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Synphonyte/leptos-struct-table"
[package.metadata."docs.rs"]
all-features = true
[dependencies]
leptos = { version = "0.8" }
leptos-struct-table-macro = { version = "0.15.0" }
leptos-use = { version = "0.18", default-features = false, features = [
"element",
"use_debounce_fn",
"use_element_size",
"use_scroll",
] }
rust_decimal = { version = "1", optional = true }
chrono = { version = "0.4", optional = true }
send_wrapper = "0.6"
serde = "1"
time = { version = "0.3", optional = true, features = ["formatting"] }
uuid = { version = "1", optional = true, features = [] }
web-sys = { version = "0.3", features = ["DomRect", "Element"] }
wasm-bindgen = "0.2"
[features]
chrono = ["dep:chrono"]
uuid = ["dep:uuid"]
rust_decimal = ["dep:rust_decimal"]
time = ["dep:time"]
i18n = ["leptos-struct-table-macro/i18n"]