-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (47 loc) · 1.3 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
50
51
52
53
54
55
56
57
[package]
edition = "2021"
license = "MIT/Apache-2.0"
name = "sframe"
version = "0.3.0"
authors = [
"Tobias Waurick <tobias.waurick@goto.com>",
"Hendrik Sollich <hendrik.sollich@goto.com>",
"Richard Haehne <richard.haehne@goto.com>",
]
description = "pure rust implementation of SFrame draft-ietf-sframe-enc-03"
repository = "https://github.com/goto-opensource/sframe-rs"
documentation = "https://docs.rs/sframe/"
readme = "README.md"
keywords = ["encryption", "sframe", "secure-frame", "webrtc"]
[dependencies]
bitfield = "0.14"
cfg-if = "1.0"
log = "0.4"
thiserror = "1.0"
[dependencies.ring]
version = "0.17"
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
ring = { version = "0.17", features = ["wasm32_unknown_unknown_js"], optional = true }
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
optional = true
[dev-dependencies]
clap = { version = "4.4.8", features = ["derive"] }
criterion = { version = "0.5", features = ["html_reports"] }
hex = "0.4"
lazy_static = "1.4.0"
phf = { version = "0.11", features = ["macros"] }
pretty_assertions = "1.3"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
simple_logger = "4.2.0"
strum_macros = "0.25"
test-case = "3.1.0"
[features]
default = ["ring"]
[[bench]]
name = "bench_main"
harness = false