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

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "web-client"
  3. version = "0.1.2"
  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. blake3 = "1.3"
  13. base64 = "0.21"
  14. console_error_panic_hook = "0.1"
  15. common-api = { path = "../common-api" }
  16. console_log = { version = "1", features = ["color"] }
  17. futures = "0.3"
  18. gloo-timers = { version = "0.2", features = ["futures-core", "futures"] }
  19. itertools = "0.10"
  20. js-sys = "0.3"
  21. log = "0.4"
  22. near-client = { git = "https://github.com/Relayz-io/near-client.git" }
  23. rand = { version = "0.8" }
  24. rand_chacha = "0.3"
  25. reqwest = { version = "0.11", features = ["json"] }
  26. serde-wasm-bindgen = "0.5"
  27. serde = { version = "1", default-features = false, features = ["derive"] }
  28. serde_json = { version = "1", default-features = false }
  29. uuid = { version = "1.3", features = ["v4", "serde", "js"] }
  30. url = "2.3"
  31. wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
  32. wasm-bindgen-futures = "0.4"
  33. web-sys = { version = "0.3", features = ["console"] }
  34. [dev-dependencies]
  35. wasm-bindgen-test = "0.3"