-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 827 Bytes
/
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
[package]
name = "posh-tabcomplete"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Blazing fast tab completion for powershell."
repository = "https://github.com/domsleee/posh-tabcomplete"
readme = "README.md"
[dependencies]
clap = { version = "4.5.18", features = ["derive"] }
itertools = "0.13"
log = "0.4"
nu-cli = "0.98.0"
nu-command = "0.98.0"
nu-cmd-lang = "0.98.0"
nu-engine = "0.98.0"
nu-parser = "0.98.0"
nu-protocol = "0.98.0"
reedline = { version = "0.35.0", features = ["bashisms", "sqlite"] }
regex = "1.10.6"
env_logger = "0.11.5"
[dev-dependencies]
tempfile = "3.12"
rstest = "0.22.0"
rstest_reuse = "0.7.0"
speculoos = "0.11.0"
[[bin]]
name = "posh-tabcomplete"
path = "src/main.rs"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"