mirror of
https://github.com/lbr77/SideImpactor.git
synced 2026-05-06 11:14:01 -04:00
25 lines
521 B
TOML
25 lines
521 B
TOML
[package]
|
|
name = "openssl-wasm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "rust-src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
cc = "1"
|
|
|
|
[dependencies]
|
|
js-sys = "0.3.94"
|
|
openssl = "0.10.75"
|
|
openssl-sys = { path = "vendor/openssl-sys" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
wasm-bindgen = "0.2.117"
|
|
web-sys = { version = "0.3.94", features = ["Window", "Crypto"] }
|
|
|
|
[patch.crates-io]
|
|
openssl-sys = { path = "vendor/openssl-sys" }
|
|
libc = { path = "vendor/libc-shim" }
|