-
-
Notifications
You must be signed in to change notification settings - Fork 265
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 664 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (23 loc) · 664 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
[package]
name = "cpd-finder"
version = "0.1.18"
edition.workspace = true
publish = false
rust-version.workspace = true
description = "File walking and clone detection for cpd"
homepage.workspace = true
license.workspace = true
repository.workspace = true
documentation = "https://docs.rs/cpd-finder"
keywords = ["duplicate-code", "clone-detection", "copy-paste", "cpd", "static-analysis"]
categories = ["development-tools"]
[dependencies]
cpd-core = { version = "0.1.18", path = "../cpd-core" }
cpd-tokenizer = { version = "0.1.17", path = "../cpd-tokenizer" }
ignore = "0.4"
globset = "0.4"
rayon = "1"
regex = "1"
chrono = "0.4"
memmap2 = "0.9"
memchr = "2.8"