-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (39 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
45 lines (39 loc) · 1.36 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
[package]
name = "egui-selectable-table"
version = "0.6.0"
edition = "2024"
description = """
A library for egui to create tables with draggable cell and row selection.
"""
readme = "README.md"
homepage = "https://github.com/TheRustyPickle/egui-selectable-table"
repository = "https://github.com/TheRustyPickle/egui-selectable-table"
license = "MIT"
keywords = ["drag", "egui", "row", "selectable-table", "table"]
categories = ["gui"]
exclude = ["/.github", "/demo"]
[package.metadata.docs.rs]
all-features = true
features = ["fuzzy-matching"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
egui = { version = "0.34", default-features = false, features = ["rayon"] }
egui_extras = { version = "0.34", default-features = false }
nucleo-matcher = { version = "0.3.1", optional = true }
rayon = "1.11.0"
[features]
default = []
fuzzy-matching = ["dep:nucleo-matcher"]
[lints.clippy]
enum_glob_use = { level = "deny", priority = 2 }
nursery = { level = "deny", priority = 0 }
pedantic = { level = "deny", priority = 1 }
perf = { level = "deny", priority = 3 }
style = { level = "deny", priority = 4 }
unwrap_used = { level = "deny", priority = 5 }
# might be useful to enable in the future
expect_used = { level = "allow", priority = 6 }
missing_panics_doc = { level = "allow", priority = 7 }
struct_excessive_bools = { level = "allow", priority = 8 }
[lints.rust]
unsafe_code = "forbid"