-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
45 lines (40 loc) · 1.01 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
[package]
name = "scooter"
version = "0.2.1"
edition = "2021"
authors = ["[email protected]"]
license = "MIT"
description = "Interactive find and replace in the terminal"
readme = "README.md"
homepage = "https://github.com/thomasschafer/scooter"
repository = "https://github.com/thomasschafer/scooter"
keywords = ["cli", "find", "search", "replace"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
content_inspector = "0.2.4"
crossterm = { version = "0.27", features = ["event-stream"] }
etcetera = "0.8.0"
fancy-regex = "0.14.0"
futures = "0.3.31"
ignore = "0.4.23"
itertools = "0.13.0"
log = "0.4.22"
parking_lot = "0.12.3"
ratatui = "0.27.0"
regex = "1.11.1"
similar = "2.6.0"
simple-log = "2.1.1"
tempfile = "3.14.0"
tokio = { version = "1.42.0", features = ["full"] }
[dev-dependencies]
rand = "0.8.5"
serial_test = "3.2.0"
[lib]
name = "scooter"
path = "src/lib.rs"
[lints.rust]
rust_2018_idioms = "warn"
[profile.release]
lto = true