mirror of
https://gitlab.rd.nic.fr/labs/frcrawler/content-clustering.git
synced 2025-04-04 11:35:13 +02:00
30 lines
659 B
TOML
30 lines
659 B
TOML
[package]
|
|
name = "content_classification"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
authors = [ "Afnic Labs <labs+crawler@afnic.fr>" ]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
fasthash = "0.4"
|
|
ssdeep = "0.6"
|
|
base64 = "0.21"
|
|
pyo3 = { version = "0.20", features = [ "extension-module" ], optional = true }
|
|
env_logger = {version = "0.10", default-features = false, features = [ "humantime" ] }
|
|
log = "0.4"
|
|
ureq = { version = "2.8", default-features = false, features = [ "tls" ] }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
serde_json = "1"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[features]
|
|
default = [ "python" ]
|
|
sse = []
|
|
python = [ "pyo3" ]
|