Skip to content

Commit

Permalink
work on more feature reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Apr 6, 2024
1 parent 85d6e08 commit 657adbd
Show file tree
Hide file tree
Showing 49 changed files with 228 additions and 472 deletions.
192 changes: 8 additions & 184 deletions Cargo.lock

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

16 changes: 10 additions & 6 deletions packages/rs-dpp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [
[dependencies]
anyhow = { version = "1.0.81" }
async-trait = { version = "0.1.79" }
base64 = "0.20.0"
base64 = "0.22.0"
bls-signatures = { git = "https://github.com/dashpay/bls-signatures", tag = "v1.3.1", optional = true }
bs58 = "0.4.0"
byteorder = { version = "1.4" }
Expand All @@ -39,7 +39,7 @@ json-patch = "0.2.6"
jsonptr = "0.1.5"
jsonschema = { git = "https://github.com/fominok/jsonschema-rs", branch = "feat-unevaluated-properties", default-features = false, features = [
"draft202012",
] }
], optional = true }
lazy_static = { version = "1.4" }
log = { version = "0.4.6" }
num_enum = "0.5.7"
Expand All @@ -58,11 +58,11 @@ platform-versioning = { path = "../rs-platform-versioning" }
platform-serialization = { path = "../rs-platform-serialization" }
platform-serialization-derive = { path = "../rs-platform-serialization-derive" }
derive_more = "0.99.17"
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"], optional = true }
nohash-hasher = "0.2.0"
rust_decimal = "1.29.1"
rust_decimal_macros = "1.29.1"
indexmap = { version = "2.0.2", features = ["serde"] }
indexmap = { version = "2.0.2"}
strum = { version = "0.25.0", features = ["derive"] }

[dev-dependencies]
Expand Down Expand Up @@ -185,10 +185,14 @@ abci = [
]
cbor = ["ciborium"]
validation = [
"json-schema-validation",
"platform-value",
"document-value-conversion",
"state-transition-serde-conversion",
"ed25519-dalek"
]
platform-value-json = ["platform-value/json"]
json-schema-validation = ["jsonschema", "platform-value-json"]
json-object = ["platform-value"]
platform-value = []
identity-hashing = ["identity-serialization"]
Expand Down Expand Up @@ -221,8 +225,8 @@ state-transition-validation = ["state-transitions", "message-signature-verificat
state-transition-signing = ["state-transitions", "message-signing", "state-transition-validation"]
state-transitions = []
system_contracts = ["factories", "data-contracts"]
fixtures-and-mocks = ["system_contracts"]
random-public-keys = ["bls-signatures"]
fixtures-and-mocks = ["system_contracts", "platform-value/json"]
random-public-keys = ["bls-signatures", "ed25519-dalek"]
random-identities = ["random-public-keys"]
random-documents = []
random-document-types = []
Expand Down
Loading

0 comments on commit 657adbd

Please sign in to comment.