2023-01-03 17:03:08 +01:00
|
|
|
[package]
|
2023-01-03 21:12:41 +01:00
|
|
|
name = "crypttool-wasm"
|
2023-01-03 17:03:08 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-01-03 21:12:41 +01:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
2023-01-03 17:03:08 +01:00
|
|
|
[dependencies]
|
2023-01-03 21:12:41 +01:00
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
magic-crypt = "3.1.12"
|
|
|
|
|
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "*"
|
|
|
|
features = [
|
|
|
|
'Document',
|
|
|
|
'Element',
|
|
|
|
'HtmlElement',
|
|
|
|
'Node',
|
|
|
|
'Window',
|
|
|
|
]
|