-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.26 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
[package]
name = "signedshot-validator"
version = "0.1.9"
edition = "2021"
description = "Validator for SignedShot media authenticity proofs"
license = "MIT"
repository = "https://github.com/SignedShot/signedshot-validator"
homepage = "https://signedshot.io"
documentation = "https://signedshot.io/docs"
readme = "README.md"
keywords = ["signedshot", "media-authenticity", "cryptography", "verification", "digital-signatures"]
categories = ["cryptography", "authentication", "command-line-utilities", "multimedia::images"]
exclude = ["*.jpg", "*.sidecar.json", "python/", "pyproject.toml"]
[lib]
name = "signedshot_validator"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "signedshot"
path = "src/bin/signedshot.rs"
[dependencies]
anyhow = "1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
hex = "0.4"
jsonwebtoken = { version = "10", features = ["rust_crypto"] }
p256 = { version = "0.13", features = ["ecdsa"] }
pyo3 = { version = "0.24", features = ["extension-module"], optional = true }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
thiserror = "1"
[dev-dependencies]
tempfile = "3"
[features]
default = []
python = ["pyo3"]