-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
58 lines (49 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "lemmeknow"
version = "0.8.0"
edition = "2021"
authors = ["swanandx"]
description = "Identify any mysterious text or analyze strings from a file"
readme = "README.md"
repository = "https://github.com/swanandx/lemmeknow"
homepage = "https://github.com/swanandx/lemmeknow"
license = "MIT"
keywords = ["cryptography", "cybersecurity", "regex", "forensics", "identify"]
categories = ["command-line-utilities", "text-processing", "parsing", "wasm"]
documentation = "https://docs.rs/lemmeknow"
exclude = ["images/", ".github/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "lemmeknow"
path = "src/lib.rs"
crate-type = ["lib"]
[features]
default = ["cli"]
cli = ["comfy-table", "clap"]
[[bin]]
name = "lemmeknow"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
once_cell = "1.19.0"
regex = "1.10"
# onig = { version="6.4", default-features=false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rayon = "1.8"
comfy-table = { version = "7.1.0", optional = true }
clap = { version = "4.4", features = ["derive"], optional = true }
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
predicates = "3.0"
[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
fancy-regex = "0.12"
regex = "1.10"
[profile.release]
lto = "thin"
panic = "abort"
strip = "symbols"