123456789101112131415161718192021222324252627282930313233343536373839 |
- [package]
- name = "web-client"
- version = "0.1.0"
- edition = "2021"
- authors = ["silvestr@relayz.io"]
- description = """
- """
-
- [lib]
- crate-type = ["cdylib", "rlib"]
-
- [dependencies]
- aes-gcm = "0.10"
- serde = { version = "1", default-features = false, features = ["derive"] }
- serde_json = { version = "1", default-features = false }
- wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
- js-sys = "0.3"
- wasm-bindgen-test = "0.3"
- wasm-bindgen-futures = "0.4.32"
- web-sys = { version = "0.3", features = ["console", "WebSocket", "WebSocketDict", "WebSocketElement", "Window"] }
- near-account-id = "0.14.0"
- near-primitives = { version = "0.14.0", package = "near-primitives-core" }
- near-units = "0.2"
- near-client = { path = "../near-client" }
- common-api = { path = "../common-api" }
- url = "2.2"
- futures = "0.3"
- reqwest = { version = "0.11", features = ["json"] }
- console_error_panic_hook = "0.1.7"
- uuid = { version = "1.1.2", features = ["v4", "serde", "js"] }
- blake2 = "0.10"
- base64 = "0.13"
- itertools = "0.10"
- rand = { version = "0.8.5" }
- rand_chacha = "0.3"
- serde-wasm-bindgen = "0.4.3"
-
- [dev-dependencies]
- wasm-bindgen-test = "0.3"
|