-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (38 loc) · 996 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
40
41
42
[package]
name = "file-expert"
version = "1.1.0"
authors = ["Bahtiar `kalkin-` Gadimov <[email protected]>"]
edition = "2018"
license = "AGPL-3.0-or-later"
description = "Expert system for recognizing source code files, similar to GitHub/lingust."
repository = "https://github.com/kalkin/file-expert"
readme = "README.md"
keywords = [
"linguist",
"linguist-heuristics",
"expert-system",
"source-code"
]
categories = [
"command-line-utilities",
"development-tools",
"text-processing"
]
include = [
"./Cargo.toml",
"./Cargo.lock",
"src/*.rs",
"README.md",
"CHANGELOG.md",
"COPYING.md",
]
[dependencies]
clap = { version="^4.0.7", default-features=false, features=["std", "help", "usage", "error-context", "cargo", 'derive'] }
lazy_static = "1.4.0"
fancy-regex = "^0.10"
update-informer = { version = '^0.5.0', optional = true }
[features]
default = ["update-informer"]
update-informer = ["dep:update-informer"]
[profile.release]
lto = "fat"