You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "web-client"
  3. version = "0.1.0"
  4. edition = "2021"
  5. authors = ["silvestr@relayz.io"]
  6. description = """
  7. """
  8. [lib]
  9. crate-type = ["cdylib", "rlib"]
  10. [dependencies]
  11. aes-gcm = "0.10"
  12. serde = { version = "1", default-features = false, features = ["derive"] }
  13. serde_json = { version = "1", default-features = false }
  14. wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
  15. js-sys = "0.3"
  16. wasm-bindgen-test = "0.3"
  17. wasm-bindgen-futures = "0.4.32"
  18. web-sys = { version = "0.3", features = ["console", "WebSocket", "WebSocketDict", "WebSocketElement", "Window"] }
  19. near-account-id = "0.14.0"
  20. near-primitives = { version = "0.14.0", package = "near-primitives-core" }
  21. near-units = "0.2"
  22. near-client = { path = "../near-client" }
  23. common-api = { path = "../common-api" }
  24. url = "2.2"
  25. futures = "0.3"
  26. reqwest = { version = "0.11", features = ["json"] }
  27. console_error_panic_hook = "0.1.7"
  28. uuid = { version = "1.1.2", features = ["v4", "serde", "js"] }
  29. blake2 = "0.10"
  30. base64 = "0.13"
  31. itertools = "0.10"
  32. rand = { version = "0.8.5" }
  33. rand_chacha = "0.3"
  34. serde-wasm-bindgen = "0.4.3"
  35. [dev-dependencies]
  36. wasm-bindgen-test = "0.3"