-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 861 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
[package]
name = "findsource"
version = "0.2.5"
edition = "2021"
authors = [
"araraloren <[email protected]>",
]
description = "Simple configurable tool for searching source files by extensions easily!"
repository = "https://github.com/araraloren/findsource"
license = "MPL-2.0"
keywords = ["aopt", "app", "extension", "find"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "fs"
path = "src/main.rs"
[dependencies]
cote = { version = "0.6", features = [
"sync",
"serde",
"shell",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.79" }
color-eyre = "0.6.3"
tokio = { version = "1.23", features = ["full"] }
atty = "0.2.14"
dunce = "1.0"
async-recursion = "1.0.4"
[profile.release]
lto = true