forked from tweedegolf/lzjd-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (30 loc) · 869 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
[package]
name = "malwaredb-lzjd"
version = "0.1.3"
authors = ["Henk Dieter <[email protected]>", "Richard Zak <[email protected]>"]
edition = "2021"
exclude = ["in/*", "out/*"]
description = "Rust implementation of the LZJD algorithm by Edward Raff -- https://github.com/EdwardRaff/jLZJD"
readme = "README.md"
keywords = ["lzjd", "edit", "distance", "Lempel", "Ziv"]
categories = ["algorithms", "compression", "cryptography", "filesystem", "science"]
license = "GPL-3.0"
repository = "https://github.com/malwaredb/lzjd-rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
base64 = "0.22"
malwaredb-murmurhash3 = "0.1"
bincode = "1.3"
crc32fast = "1.4"
walkdir = "2.5"
num_cpus = "1.16"
rayon = "1.10"
[dev-dependencies]
rand = "0.8"
criterion = "0.5"
[[bench]]
name = "lzjd"
harness = false
[[bin]]
name = "lzjd"
path = "src/main.rs"