-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 787 Bytes
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
[package]
name = "cheat_checker"
description = "Detects similarities between sets of files"
version = "2.7.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/typecasto/cheat_checker"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.faster]
opt-level = 3
lto = "fat"
codegen-units = 1
inherits="release"
[dependencies]
anyhow = "1.0.69"
bpaf = { version = "0.9.9", features = ["derive", "color"] }
chardet = "0.2.4"
encoding_rs = "0.8.32"
encoding_rs_io = "0.1.7"
glob = "0.3.1"
indicatif = "0.17.3"
log = "0.4.17"
owo-colors = { version = "4.0.0", features = ["supports-color"] }
pretty_env_logger = "0.5.0"
eddie = "0.4.2"
colorgrad ={ version = "0.6.2", default-features = false }