-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'refs/remotes/origin/master' into feat/d…
…ashmate-dkg-check # Conflicts: # .pnp.cjs # CHANGELOG.md # Cargo.lock # package.json # packages/bench-suite/package.json # packages/dapi-grpc/Cargo.toml # packages/dapi-grpc/package.json # packages/dapi/package.json # packages/dash-spv/package.json # packages/dashmate/configs/defaults/getTestnetConfigFactory.js # packages/dashmate/configs/getConfigFileMigrationsFactory.js # packages/dashmate/docker-compose.yml # packages/dashmate/package.json # packages/dashmate/src/listr/tasks/platform/waitForNodeToBeReadyTaskFactory.js # packages/dashpay-contract/Cargo.toml # packages/dashpay-contract/package.json # packages/data-contracts/Cargo.toml # packages/dpns-contract/Cargo.toml # packages/dpns-contract/package.json # packages/feature-flags-contract/Cargo.toml # packages/feature-flags-contract/package.json # packages/js-dapi-client/package.json # packages/js-dash-sdk/package.json # packages/js-grpc-common/package.json # packages/masternode-reward-shares-contract/Cargo.toml # packages/masternode-reward-shares-contract/package.json # packages/platform-test-suite/package.json # packages/rs-dapi-client/Cargo.toml # packages/rs-dapi-grpc-macros/Cargo.toml # packages/rs-dpp/Cargo.toml # packages/rs-drive-abci/Cargo.toml # packages/rs-drive-proof-verifier/Cargo.toml # packages/rs-drive/Cargo.toml # packages/rs-platform-serialization-derive/Cargo.toml # packages/rs-platform-serialization/Cargo.toml # packages/rs-platform-value-convertible/Cargo.toml # packages/rs-platform-value/Cargo.toml # packages/rs-platform-version/Cargo.toml # packages/rs-platform-versioning/Cargo.toml # packages/rs-sdk/Cargo.toml # packages/simple-signer/Cargo.toml # packages/strategy-tests/Cargo.toml # packages/wallet-lib/package.json # packages/wasm-dpp/Cargo.toml # packages/wasm-dpp/package.json # packages/withdrawals-contract/Cargo.toml # packages/withdrawals-contract/package.json # yarn.lock
- Loading branch information
Showing
48 changed files
with
3,062 additions
and
2,423 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dashevo/platform", | ||
"version": "1.0.0-dev.12", | ||
"version": "0.25.22", | ||
"private": true, | ||
"scripts": { | ||
"setup": "yarn install && yarn run build && yarn run configure", | ||
|
@@ -71,7 +71,6 @@ | |
"bn.js": "4.12.0", | ||
"ejs": "^3.1.7", | ||
"fast-json-patch": "^3.1.1", | ||
"node-tar": "^6.2.1", | ||
"[email protected]": "patch:oclif@npm:3.4.2#.yarn/patches/oclif-npm-3.4.2-a655d32eed.patch", | ||
"qs": "^6.7.3", | ||
"engine.io": "^6.4.2", | ||
|
@@ -85,13 +84,10 @@ | |
"browserify-sign": "4.2.2", | ||
"istanbul-lib-processinfo": "2.0.3", | ||
"@babel/core": "7.23.3", | ||
"tar": "^6.2.1", | ||
"tsconfig-paths": "4.2.0", | ||
"ansi-regex": "5.0.1", | ||
"cacache": "18.0.0", | ||
"node-gyp": "10.0.1", | ||
"follow-redirects": "^1.15.5", | ||
"socks": "^2.8.1" | ||
"node-gyp": "10.0.1" | ||
}, | ||
"dependencies": { | ||
"node-gyp": "^10.0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,36 @@ | ||
[package] | ||
name = "dapi-grpc" | ||
description = "GRPC client for Dash Platform" | ||
version = "1.0.0-dev.12" | ||
version = "0.25.22" | ||
authors = [ | ||
"Samuel Westrich <[email protected]>", | ||
"Igor Markin <[email protected]>", | ||
"Łukasz Klimek <[email protected]>", | ||
"Anton Suprunchuk <[email protected]>", | ||
"Ivan Shumkov <[email protected]>", | ||
"Samuel Westrich <[email protected]>", | ||
"Igor Markin <[email protected]>", | ||
"Łukasz Klimek <[email protected]>", | ||
"Anton Suprunchuk <[email protected]>", | ||
"Ivan Shumkov <[email protected]>", | ||
] | ||
edition = "2021" | ||
rust-version = "1.76" | ||
rust-version = "1.73" | ||
license = "MIT" | ||
|
||
[features] | ||
# Enable all features by default, otherwise different crates | ||
# triggier bulding proto with different feature set that overwrites | ||
# previous results and causes build errors | ||
default = ["core", "platform", "client", "serde", "server"] | ||
default = ["core", "platform", "client", "serde"] | ||
core = [] | ||
platform = [] | ||
# Re-export Dash Platform protobuf types as `dapi_grpc::platform::proto` | ||
# Note: client needs tls and tls-roots to connect to testnet which uses TLS. | ||
tenderdash-proto = [] | ||
client = [ | ||
"tonic/channel", | ||
"tonic/transport", | ||
"tonic/tls", | ||
"tonic/tls-roots", | ||
"tonic/tls-webpki-roots", | ||
"platform", | ||
] | ||
server = ["tonic/channel", "tonic/transport", "platform"] | ||
client = ["tonic/channel", "tonic/tls", "tonic/tls-roots", "platform"] | ||
serde = ["dep:serde", "dep:serde_bytes"] | ||
mocks = ["dep:serde_json"] | ||
|
||
[dependencies] | ||
prost = { version = "0.12.3" } | ||
futures-core = "0.3.30" | ||
tonic = { version = "0.11", features = [ | ||
"codegen", | ||
"prost", | ||
prost = { version = "0.11.9" } | ||
tonic = { version = "0.9.2", features = [ | ||
"codegen", | ||
"prost", | ||
], default-features = false } | ||
serde = { version = "1.0.197", optional = true, features = ["derive"] } | ||
serde = { version = "1.0.171", optional = true, features = ["derive"] } | ||
serde_bytes = { version = "0.11.12", optional = true } | ||
serde_json = { version = "1.0", optional = true } | ||
tenderdash-proto = { git = "https://github.com/dashpay/rs-tenderdash-abci", version = "0.14.0-dev.12", default-features = false } | ||
tenderdash-proto = { git = "https://github.com/dashpay/rs-tenderdash-abci" } | ||
dapi-grpc-macros = { path = "../rs-dapi-grpc-macros" } | ||
platform-version = { path = "../rs-platform-version" } | ||
|
||
|
@@ -64,4 +49,4 @@ name = "platform_example" | |
path = "clients/platform/v0/rust/platform_example.rs" | ||
|
||
[package.metadata.cargo-machete] | ||
ignored = ["platform-version", "serde_bytes", "futures-core"] | ||
ignored = ["platform-version", "serde_bytes"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.