1234567891011121314151617181920212223242526272829303132333435363738 |
- [package]
- name = "web-client"
- version = "0.1.2"
- edition = "2021"
- authors = ["silvestr@relayz.io"]
- description = """
- """
-
- [lib]
- crate-type = ["cdylib", "rlib"]
-
- [dependencies]
- aes-gcm = "0.10"
- blake3 = "1.3"
- base64 = "0.21"
- console_error_panic_hook = "0.1"
- common-api = { path = "../common-api" }
- console_log = { version = "1", features = ["color"] }
- futures = "0.3"
- gloo-timers = { version = "0.2", features = ["futures-core", "futures"] }
- itertools = "0.10"
- js-sys = "0.3"
- log = "0.4"
- near-client = { git = "https://github.com/Relayz-io/near-client.git" }
- rand = { version = "0.8" }
- rand_chacha = "0.3"
- reqwest = { version = "0.11", features = ["json"] }
- serde-wasm-bindgen = "0.5"
- serde = { version = "1", default-features = false, features = ["derive"] }
- serde_json = { version = "1", default-features = false }
- uuid = { version = "1.3", features = ["v4", "serde", "js"] }
- url = "2.3"
- wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
- wasm-bindgen-futures = "0.4"
- web-sys = { version = "0.3", features = ["console"] }
-
- [dev-dependencies]
- wasm-bindgen-test = "0.3"
|