@dashevo/dapi-grpc 2.1.0-dev.1 → 2.1.0-dev.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Cargo.toml +5 -6
  2. package/package.json +2 -2
package/Cargo.toml CHANGED
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  name = "dapi-grpc"
3
3
  description = "GRPC client for Dash Platform"
4
- version = "2.1.0-dev.1"
4
+ version = "2.1.0-dev.3"
5
5
  authors = [
6
6
  "Samuel Westrich <sam@dash.org>",
7
7
  "Igor Markin <igor.markin@dash.org>",
@@ -43,11 +43,6 @@ tenderdash-proto = { git = "https://github.com/dashpay/rs-tenderdash-abci", vers
43
43
 
44
44
  prost = { version = "0.13" }
45
45
  futures-core = "0.3.30"
46
- tonic = { version = "0.13.0", features = [
47
- "codegen",
48
- "prost",
49
- "tls-ring",
50
- ], default-features = false }
51
46
  serde = { version = "1.0.219", optional = true, features = ["derive"] }
52
47
  serde_bytes = { version = "0.11.12", optional = true }
53
48
  serde_json = { version = "1.0", optional = true }
@@ -55,6 +50,10 @@ dapi-grpc-macros = { path = "../rs-dapi-grpc-macros" }
55
50
  platform-version = { path = "../rs-platform-version" }
56
51
 
57
52
  [target.'cfg(target_arch = "wasm32")'.dependencies]
53
+ tonic = { version = "0.13.0", features = [
54
+ "codegen",
55
+ "prost",
56
+ ], default-features = false }
58
57
  getrandom = { version = "0.2", features = ["js"] }
59
58
 
60
59
  [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashevo/dapi-grpc",
3
- "version": "2.1.0-dev.1",
3
+ "version": "2.1.0-dev.3",
4
4
  "description": "DAPI GRPC definition file and generated clients",
5
5
  "browser": "browser.js",
6
6
  "main": "node.js",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "homepage": "https://github.com/dashevo/dapi-grpc#readme",
47
47
  "dependencies": {
48
- "@dashevo/grpc-common": "2.1.0-dev.1",
48
+ "@dashevo/grpc-common": "2.1.0-dev.3",
49
49
  "@dashevo/protobufjs": "6.10.5",
50
50
  "@grpc/grpc-js": "1.4.4",
51
51
  "@improbable-eng/grpc-web": "^0.15.0",