-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.2 KB
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
[package]
name = "aicheck"
version = "0.2.0"
edition = "2021"
rust-version = "1.86"
description = "Detect AI-generated content via metadata and watermarks (C2PA, XMP, EXIF, MP4, ID3, WAV, PNG, filename, spectral, watermark)"
license = "AGPL-3.0-or-later"
repository = "https://github.com/MatrixA/aicheck"
homepage = "https://github.com/MatrixA/aicheck"
documentation = "https://matrixa.github.io/aicheck/"
keywords = ["ai-detection", "c2pa", "watermark", "metadata", "forensics"]
categories = ["command-line-utilities", "multimedia"]
exclude = [".github/", ".context/", "docs/", "tests/fixtures/"]
[lib]
name = "aicheck"
path = "src/lib.rs"
[[bin]]
name = "aic"
path = "src/main.rs"
[dependencies]
anyhow = "1"
c2pa = { version = "0.77", features = ["file_io", "pdf"] }
clap = { version = "4", features = ["derive"] }
colored = "2"
image = { version = "0.24", default-features = false, features = ["png", "jpeg", "webp", "gif", "bmp", "tiff"] }
infer = "0.19"
kamadak-exif = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
id3 = "1"
rustfft = "6"
quick-xml = "0.36"
rust-i18n = "3"
sys-locale = "0.3"
tempfile = "3"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"