-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
29 lines (26 loc) · 1 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
[package]
name = "sensitive-rs"
description = "Sensitive word search, verification, filtering and replacement."
version = "0.2.2"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["houseme <[email protected]>"]
repository = "https://github.com/houseme/sensitive-rs"
homepage = "https://houseme.github.io/sensitive-rs"
documentation = "https://docs.rs/sensitive-rs"
keywords = ["sensitive", "generate", "filter", "trie", "replace-verification"]
categories = ["memory-management", "encoding", "science", "algorithms"]
readme = "README.md"
# Crate build related
exclude = ["tests/*", ".gitignore"]
include = ["src/**", "dict/**", "Cargo.toml", "README.md", "README_CN.md", "LICENSE-APACHE", "LICENSE-MIT", "CHANGELOG.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 3
debug = false
[dependencies]
regex = "1.11"
reqwest = { version = "0.12", features = ["blocking"], optional = true }
[features]
default = []
net = ["dep:reqwest"]