2022-02-07 02:18:42 +00:00
|
|
|
[package]
|
2023-09-02 14:41:59 +00:00
|
|
|
# --- Bumpversion match - do not reorder
|
2022-02-07 02:18:42 +00:00
|
|
|
name = "veilid-wasm"
|
2023-09-16 18:04:36 +00:00
|
|
|
version = "0.2.1"
|
2023-09-02 14:41:59 +00:00
|
|
|
# ---
|
2023-07-19 16:48:44 +00:00
|
|
|
authors = ["Veilid Team <contact@veilid.com>"]
|
|
|
|
license = "MPL-2.0"
|
2022-02-07 02:18:42 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
2023-03-13 21:57:51 +00:00
|
|
|
[features]
|
2023-08-29 20:52:47 +00:00
|
|
|
default = ["veilid-core/default-wasm"]
|
2023-08-29 20:15:47 +00:00
|
|
|
crypto-test = ["veilid-core/crypto-test"]
|
2023-03-13 21:57:51 +00:00
|
|
|
|
2022-02-07 02:18:42 +00:00
|
|
|
[dependencies]
|
2023-09-16 16:23:56 +00:00
|
|
|
veilid-core = { version = "0.2.1", path = "../veilid-core", default-features = false }
|
2022-06-29 17:39:54 +00:00
|
|
|
|
2022-06-16 03:29:45 +00:00
|
|
|
tracing = { version = "^0", features = ["log", "attributes"] }
|
2022-06-08 01:31:05 +00:00
|
|
|
tracing-wasm = "^0"
|
|
|
|
tracing-subscriber = "^0"
|
2022-06-29 17:39:54 +00:00
|
|
|
|
|
|
|
wasm-bindgen = { version = "^0", features = ["serde-serialize"] }
|
|
|
|
console_error_panic_hook = "^0"
|
|
|
|
wee_alloc = "^0"
|
2022-02-07 02:18:42 +00:00
|
|
|
cfg-if = "^1"
|
|
|
|
wasm-bindgen-futures = "^0"
|
|
|
|
js-sys = "^0"
|
2022-03-15 13:33:34 +00:00
|
|
|
serde_json = "^1"
|
|
|
|
serde = "^1"
|
|
|
|
lazy_static = "^1"
|
|
|
|
send_wrapper = "^0"
|
2022-12-16 01:16:42 +00:00
|
|
|
futures-util = { version = "^0" }
|
2022-10-01 02:37:55 +00:00
|
|
|
data-encoding = { version = "^2" }
|
2022-10-05 23:12:10 +00:00
|
|
|
gloo-utils = { version = "^0", features = ["serde"] }
|
2023-08-16 14:25:09 +00:00
|
|
|
tsify = { version = "0.4.5", features = ["js"] }
|
|
|
|
serde-wasm-bindgen = "0.5.0"
|
2022-02-07 02:18:42 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen-test = "^0"
|
2023-09-05 02:13:58 +00:00
|
|
|
parking_lot = "0.12.1"
|