-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.08 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
[package]
name = "near-facsimile"
version = "1.0.8"
edition = "2021"
rust-version = "1.74"
authors = ["Marek Suchánek <[email protected]>"]
license = "Apache-2.0"
description = "Find similar or identical text files in a directory"
repository = "https://github.com/msuchane/near-facsimile/"
readme = "README.md"
keywords = ["duplicate", "similarity", "similar", "compare"]
categories = ["command-line-utilities", "text-processing"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
color-eyre = "0.6"
strsim = "0.11"
rayon = "1.9"
log = "0.4"
simplelog = "0.12"
owo-colors = { version = "4.0", features = ["supports-colors"] }
csv = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive", "cargo"] }
permutator = "0.4"
trigram = "0.4"
ignore = "0.4"
regex = "1.10"
indicatif = { version = "0.17", features = ["rayon"] }
[build-dependencies]
# Temporary to keep MSRV at 1.60
clap = { version = "4.5", features = ["derive", "cargo"] }
clap_mangen = "0.2"
regex = "1.10"