-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
64 lines (51 loc) · 1.26 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
61
62
63
64
[package]
authors = ["Alex Rutar <[email protected]>"]
categories = ["command-line-interface"]
description = "A performant and Unicode-aware fuzzy picker tui library"
edition = "2021"
keywords = ["cli"]
license = "MIT OR Apache-2.0"
name = "nucleo-picker"
repository = "https://github.com/autobib/nucleo-picker"
version = "0.8.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
crossterm = { version = "0.28", features = ["use-dev-tty"] }
memchr = "2.7"
nucleo = "0.5"
parking_lot = "0.12.3"
unicode-segmentation = "1.10"
unicode-width = { version = "0.2", default-features = false }
serde = { version = "1.0", optional = true }
[dev-dependencies]
crossbeam = "0.8.4"
rand = "0.8.5"
ignore = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[lints.clippy]
redundant_closure_for_method_calls = "warn"
same_functions_in_if_condition = "warn"
semicolon_if_nothing_returned = "warn"
uninlined_format_args = "warn"
[[example]]
name = "custom_io"
[[example]]
name = "fzf_err_handling"
[[example]]
name = "find"
[[example]]
name = "restart"
[[example]]
name = "restart_ext"
[[example]]
name = "blocking"
[[example]]
name = "serde"
required-features = ["serde"]
[[example]]
name = "fzf"
[[example]]
name = "options"