-
Notifications
You must be signed in to change notification settings - Fork 702
[Feature] Leo Devnode CLI command #29012
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
07c01e5
a247939
cbb870c
2e10d2f
d762314
47f7f9c
31bb3d8
6f6b170
ad1e02c
ba9f5b5
f555d43
b6a7547
92ec02c
03495fe
e0f14ba
9a66033
77c4102
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ include = [ | |
| ] | ||
| license = "GPL-3.0" | ||
| edition = "2024" | ||
| rust-version = "1.92.0" | ||
| rust-version = "1.90.0" | ||
|
|
||
| [workspace] | ||
| members = [ | ||
|
|
@@ -89,18 +89,31 @@ path = "./test-framework" | |
| version = "=3.4.0" | ||
|
|
||
| [workspace.dependencies.aleo-std] | ||
| version = "1.0.1" | ||
| version = "1.0.3" | ||
|
|
||
| [workspace.dependencies.aleo-std-storage] | ||
| version = "1.0.3" | ||
| default-features = false | ||
|
|
||
| [workspace.dependencies.anyhow] | ||
| version = "1.0" | ||
|
|
||
| [workspace.dependencies.axum] | ||
| version = "0.8.0" | ||
|
|
||
| [workspace.dependencies.axum-extra] | ||
| version = "0.10" | ||
| features = ["erased-json", "typed-header"] | ||
|
|
||
| [workspace.dependencies.base62] | ||
| version = "2.2.1" | ||
|
|
||
| [workspace.dependencies.colored] | ||
| version = "2.0" | ||
|
|
||
| [workspace.dependencies.http] | ||
| version = "1" | ||
|
|
||
| [workspace.dependencies.indexmap] | ||
| version = "2.6" | ||
| features = [ "serde" ] | ||
|
|
@@ -111,6 +124,12 @@ version = "0.13.0" | |
| [workspace.dependencies.paste] | ||
| version = "1.0" | ||
|
|
||
| [workspace.dependencies.is-terminal] | ||
| version = "0.4" | ||
|
|
||
| [workspace.dependencies.parking_lot] | ||
| version = "0.12" | ||
|
|
||
| [workspace.dependencies.rand] | ||
| version = "0.8" | ||
| default-features = false | ||
|
|
@@ -120,11 +139,14 @@ version = "0.3.0" | |
| default-features = false | ||
|
|
||
| [workspace.dependencies.rayon] | ||
| version = "1.11.0" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, are we able to keep using the newer version of rayon rather than downgrading? |
||
| version = "0.8" | ||
|
|
||
| [workspace.dependencies.regex] | ||
| version = "1.11.1" | ||
|
|
||
| [workspace.dependencies.reqwest] | ||
| version = "0.12.23" | ||
|
|
||
| [workspace.dependencies.self_update] | ||
| version = "0.41.0" | ||
| features = [ "archive-zip", "compression-zip-deflate" ] | ||
|
|
@@ -144,15 +166,30 @@ version = "3.1.1" | |
| version = "0.10.9" | ||
|
|
||
| [workspace.dependencies.snarkvm] | ||
| version = "4.4.0" | ||
| features = [ "test_consensus_heights" ] | ||
| git = "https://github.com/ProvableHQ/snarkVM.git" | ||
| rev = "7787e6e" | ||
| features = ["dev_skip_checks", "test_consensus_heights", "test_targets"] | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems to me that this will always disable checks in the devnode. Can we enable
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And maybe you can also write some comments giving context to future developers: |
||
|
|
||
| [workspace.dependencies.tempfile] | ||
| version = "3.13" | ||
|
|
||
| [workspace.dependencies.tokio] | ||
| version = "1" | ||
| features = ["full"] | ||
|
|
||
| [workspace.dependencies.tower-http] | ||
| version = "0.6.0" | ||
|
|
||
| [workspace.dependencies.tower_governor] | ||
| version = "0.7" | ||
|
|
||
| [workspace.dependencies.tracing] | ||
| version = "0.1" | ||
|
|
||
| [workspace.dependencies.tracing-subscriber] | ||
| version = "0.3" | ||
| features = ["env-filter", "fmt"] | ||
|
|
||
| [workspace.dependencies.ureq] | ||
| version = "3.0.12" | ||
|
|
||
|
|
@@ -206,6 +243,15 @@ workspace = true | |
| [dependencies.aleo-std] | ||
| workspace = true | ||
|
|
||
| [dependencies.aleo-std-storage] | ||
| workspace = true | ||
|
|
||
| [dependencies.axum] | ||
| workspace = true | ||
|
|
||
| [dependencies.axum-extra] | ||
| workspace = true | ||
|
|
||
| [dependencies.backtrace] | ||
| version = "0.3.74" | ||
|
|
||
|
|
@@ -240,6 +286,9 @@ version = "1.0.5" | |
| [dependencies.indexmap] | ||
| workspace = true | ||
|
|
||
| [dependencies.is-terminal] | ||
| version = "0.4" | ||
|
|
||
| [dependencies.itertools] | ||
| workspace = true | ||
|
|
||
|
|
@@ -264,6 +313,9 @@ workspace = true | |
| [dependencies.regex] | ||
| workspace = true | ||
|
|
||
| [dependencies.reqwest] | ||
| workspace = true | ||
|
|
||
| [dependencies.rpassword] | ||
| version = "7.4.0" | ||
|
|
||
|
|
@@ -284,20 +336,31 @@ workspace = true | |
|
|
||
| [dependencies.snarkvm] | ||
| workspace = true | ||
| features = [ "circuit", "console" ] | ||
| features = ["circuit", "console"] | ||
|
|
||
| [dependencies.sys-info] | ||
| version = "0.9.1" | ||
|
|
||
| [dependencies.tempfile] | ||
| version = "3.20.0" | ||
|
|
||
| [dependencies.tokio] | ||
| workspace = true | ||
| features = ["full", "rt-multi-thread", "macros"] | ||
|
|
||
| [dependencies.tower-http] | ||
| workspace = true | ||
| features = ["cors", "trace"] | ||
|
|
||
| [dependencies.tower_governor] | ||
| workspace = true | ||
|
|
||
| [dependencies.tracing] | ||
| workspace = true | ||
|
|
||
| [dependencies.tracing-subscriber] | ||
| version = "0.3.18" | ||
| features = [ "fmt" ] | ||
| version = "0.3.0" | ||
| features = ["env-filter","fmt"] | ||
|
|
||
| [dependencies.ureq] | ||
| workspace = true | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we able to keep using 1.92.0? Any reason we downgraded?