-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.09 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "serde-crypt"
version = "0.1.4"
edition = "2021"
description = "The end-to-end encrypted serde::Serializer and serde::Deserializer - wasm-ready"
license = "GPL-3.0-or-later"
repository = "https://github.com/D3PSI/serde-crypt"
keywords = ["serde", "serialization", "crypto", "encryption"]
categories = ["cryptography"]
[lib]
path = "./lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = { version = "0.2.95" }
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6"
serde_json = "1.0.132"
base64 = "0.22.1"
ring = { version = "0.16.20", features = ["wasm32_c"] }
once_cell = "1.20.2"
[dependencies.web-sys]
version = "0.3.72"
features = [
'CssStyleDeclaration',
'Document',
'Element',
'HtmlElement',
'HtmlButtonElement',
'HtmlParagraphElement',
'Node',
'Window',
'Storage',
'console',
'Headers',
'Request',
'RequestCredentials',
'RequestInit',
'RequestMode',
'Response',
'Window',
]
[dev-dependencies]
wasm-bindgen-test = "0.3.45"