-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 833 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 = "ioc_extract"
version = "0.4.8"
description = "Extract indicators like urls,domains,ip,emails,etc... from a given string"
authors = ["Marirs <[email protected]>"]
homepage = "https://github.com/marirs/ioc_extract-rs"
repository = "https://github.com/marirs/ioc_extract-rs"
keywords = ["ioc", "indicators", "emails", "domains", "urls"]
readme = "README.md"
license-file = "LICENSE"
exclude = ["data", "examples"]
edition = "2021"
[dependencies]
fancy-regex = "0.14.0"
idna = "1.0.2"
lazy_static = "1"
serde = { version = "1", features = ["derive"] }
tld_download = { version = "0.1.3", features = ["with-db"] }
hickory-resolver = "0.24.1"
[lib]
name = "ioc_extract"
path = "src/lib.rs"
[profile.dev]
opt-level = 3
[profile.release]
codegen-units = 1
debug-assertions = false
debug = false
opt-level = 3
lto = true