Skip to content

Commit

Permalink
Merge branch 'v1.0-dev' into fix/select-random-identities-for-strateg…
Browse files Browse the repository at this point in the history
…y-documents
  • Loading branch information
pauldelucia authored May 28, 2024
2 parents 449d30e + 5caf216 commit 9542fee
Show file tree
Hide file tree
Showing 32 changed files with 307 additions and 5,785 deletions.
113 changes: 70 additions & 43 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ enableGlobalCache: false

npmPublishRegistry: "https://registry.npmjs.org"

npmAuditExcludePackages:
# TODO: We can't update rimraf, glob and inflight because karma is using old version of it.
# Remove the exclude when new version of karma is available.
- rimraf
- glob
- inflight

packageExtensions:
"@dashevo/protobufjs@*":
dependencies:
Expand Down
2 changes: 2 additions & 0 deletions packages/dapi-grpc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src/core/*/
src/platform/*/
14 changes: 8 additions & 6 deletions packages/dapi-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ rust-version = "1.76"
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"]
core = []
platform = []
# Re-export Dash Platform protobuf types as `dapi_grpc::platform::proto`
Expand All @@ -33,7 +30,7 @@ client = [
]
server = ["tonic/channel", "tonic/transport", "platform"]
serde = ["dep:serde", "dep:serde_bytes"]
mocks = ["dep:serde_json"]
mocks = ["serde", "dep:serde_json"]

[dependencies]
prost = { version = "0.12.3" }
Expand Down Expand Up @@ -64,4 +61,9 @@ 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",
"futures-core",
"dapi-grpc-macros",
]
Loading

0 comments on commit 9542fee

Please sign in to comment.