forked from web-extensions-rs/web-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 812 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
[package]
name = "web-extensions"
version = "0.2.1"
authors = [
"Roman Volosatovs <[email protected]>",
"Markus Kohlhase <[email protected]>",
]
edition = "2021"
description = "This crate provides wrappers around WebExtensions API"
repository = "https://github.com/rvolosatovs/web-extensions"
license = "MIT"
keywords = ["api", "serde", "wasm", "web", "webassembly"]
categories = ["api-bindings", "wasm"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
gloo-utils = "0.1.5"
js-sys = "0.3.60"
serde = { version = "1.0.147", features = ["derive"] }
serde_derive = "1.0.147"
serde_json = "1.0.87"
thiserror = "1.0.37"
wasm-bindgen = "0.2.83"
wasm-bindgen-futures = "0.4.33"
web-extensions-sys = "0.3.3"
[dev-dependencies]
wasm-bindgen-test = "0.3.33"
[features]
default = []
firefox = []