-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 929 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 929 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/nowm-core",
"crates/nowm-i18n",
"crates/nowm-cli",
"crates/nowm-gui",
]
[workspace.package]
version = "1.0.1"
edition = "2021"
rust-version = "1.82"
authors = ["Giacomo Giordano"]
license = "MIT"
repository = "https://github.com/BitJacker/no-watermark"
homepage = "https://github.com/BitJacker/no-watermark"
description = "Detect and strip invisible Unicode watermarks, hidden payloads and stylometric fingerprints from AI chat output."
keywords = ["unicode", "watermark", "sanitizer", "ai", "security"]
categories = ["command-line-utilities", "text-processing"]
[workspace.dependencies]
nowm-core = { path = "crates/nowm-core", version = "1.0.1" }
nowm-i18n = { path = "crates/nowm-i18n", version = "1.0.1" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true