-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
35 lines (32 loc) · 1.06 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
[package]
name = "leptos-struct-table"
version = "0.13.1"
edition = "2021"
authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming"]
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"
[dependencies]
leptos = { version = "0.6" }
leptos-struct-table-macro = { version = "0.11.2" }
leptos-use = "0.13"
rust_decimal = { version = "1.35", optional = true }
chrono = { version = "0.4", optional = true }
serde = "1"
time = { version = "0.3", optional = true, features = ["formatting"] }
uuid = { version = "1", optional = true, features = [] }
thiserror = "1"
web-sys = "0.3.67"
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"]
[package.metadata."docs.rs"]
all-features = true