forked from contentauth/c2pa-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 836 Bytes
/
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
30
31
32
33
34
35
36
37
38
[package]
name = "c2pa-node"
version = "0.1.0"
description = "Node.js bindings for C2PA"
authors = ["Dave Kozma <dkozma@adobe.com>"]
license = "MIT"
edition = "2021"
exclude = ["generated/c2pa.node"]
[lib]
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.68"
c2pa = { version = "0.25.1", features = [
"fetch_remote_manifests",
"file_io",
"xmp_write",
] }
futures = "0.3"
once_cell = "1.17.1"
reqwest = { version = "0.11.18", features = [
"blocking",
"brotli",
"deflate",
"gzip",
] }
serde = "1.0.163"
serde_json = "1.0.96"
thiserror = "1.0.40"
tokio = { version = "1.28.1", features = ["rt-multi-thread", "sync"] }
[dependencies.neon]
version = "1.0.0-alpha.4"
default-features = false
features = ["futures", "napi-6"]