mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-26 12:13:08 +00:00
Remove oncecell dep from workspace Cargo.toml
This commit is contained in:
parent
addc65933f
commit
82d5ce403c
65
Cargo.toml
65
Cargo.toml
@ -1,25 +1,25 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "3"
|
resolver = "3"
|
||||||
members = [
|
members = [
|
||||||
"integration_tests",
|
"integration_tests",
|
||||||
"sequencer_runner",
|
"sequencer_runner",
|
||||||
"storage",
|
"storage",
|
||||||
"key_protocol",
|
"key_protocol",
|
||||||
"sequencer_rpc",
|
"sequencer_rpc",
|
||||||
"mempool",
|
"mempool",
|
||||||
"wallet",
|
"wallet",
|
||||||
"wallet-ffi",
|
"wallet-ffi",
|
||||||
"sequencer_core",
|
"sequencer_core",
|
||||||
"common",
|
"common",
|
||||||
"nssa",
|
"nssa",
|
||||||
"nssa/core",
|
"nssa/core",
|
||||||
"program_methods",
|
"program_methods",
|
||||||
"program_methods/guest",
|
"program_methods/guest",
|
||||||
"test_program_methods",
|
"test_program_methods",
|
||||||
"test_program_methods/guest",
|
"test_program_methods/guest",
|
||||||
"examples/program_deployment",
|
"examples/program_deployment",
|
||||||
"examples/program_deployment/methods",
|
"examples/program_deployment/methods",
|
||||||
"examples/program_deployment/methods/guest",
|
"examples/program_deployment/methods/guest",
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
@ -35,14 +35,11 @@ sequencer_runner = { path = "sequencer_runner" }
|
|||||||
wallet = { path = "wallet" }
|
wallet = { path = "wallet" }
|
||||||
wallet-ffi = { path = "wallet-ffi" }
|
wallet-ffi = { path = "wallet-ffi" }
|
||||||
test_program_methods = { path = "test_program_methods" }
|
test_program_methods = { path = "test_program_methods" }
|
||||||
|
|
||||||
once_cell = "1.19"
|
|
||||||
|
|
||||||
tokio = { version = "1.28.2", features = [
|
tokio = { version = "1.28.2", features = [
|
||||||
"net",
|
"net",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
"sync",
|
"sync",
|
||||||
"fs",
|
"fs",
|
||||||
] }
|
] }
|
||||||
risc0-zkvm = { version = "3.0.3", features = ['std'] }
|
risc0-zkvm = { version = "3.0.3", features = ['std'] }
|
||||||
risc0-build = "3.0.3"
|
risc0-build = "3.0.3"
|
||||||
@ -81,20 +78,20 @@ base58 = "0.2.0"
|
|||||||
itertools = "0.14.0"
|
itertools = "0.14.0"
|
||||||
|
|
||||||
rocksdb = { version = "0.24.0", default-features = false, features = [
|
rocksdb = { version = "0.24.0", default-features = false, features = [
|
||||||
"snappy",
|
"snappy",
|
||||||
"bindgen-runtime",
|
"bindgen-runtime",
|
||||||
] }
|
] }
|
||||||
rand = { version = "0.8.5", features = ["std", "std_rng", "getrandom"] }
|
rand = { version = "0.8.5", features = ["std", "std_rng", "getrandom"] }
|
||||||
k256 = { version = "0.13.3", features = [
|
k256 = { version = "0.13.3", features = [
|
||||||
"ecdsa-core",
|
"ecdsa-core",
|
||||||
"arithmetic",
|
"arithmetic",
|
||||||
"expose-field",
|
"expose-field",
|
||||||
"serde",
|
"serde",
|
||||||
"pem",
|
"pem",
|
||||||
] }
|
] }
|
||||||
elliptic-curve = { version = "0.13.8", features = ["arithmetic"] }
|
elliptic-curve = { version = "0.13.8", features = ["arithmetic"] }
|
||||||
actix-web = { version = "=4.1.0", default-features = false, features = [
|
actix-web = { version = "=4.1.0", default-features = false, features = [
|
||||||
"macros",
|
"macros",
|
||||||
] }
|
] }
|
||||||
clap = { version = "4.5.42", features = ["derive", "env"] }
|
clap = { version = "4.5.42", features = ["derive", "env"] }
|
||||||
reqwest = { version = "0.11.16", features = ["json"] }
|
reqwest = { version = "0.11.16", features = ["json"] }
|
||||||
|
|||||||
@ -625,8 +625,8 @@ struct WalletHandle *wallet_ffi_open(const char *config_path, const char *storag
|
|||||||
* After calling this function, the handle is invalid and must not be used.
|
* After calling this function, the handle is invalid and must not be used.
|
||||||
*
|
*
|
||||||
* # Safety
|
* # Safety
|
||||||
* - The handle must be either null or a valid handle from `wallet_ffi_create_new()`
|
* - The handle must be either null or a valid handle from `wallet_ffi_create_new()` or
|
||||||
* or `wallet_ffi_open()`.
|
* `wallet_ffi_open()`.
|
||||||
* - The handle must not be used after this call.
|
* - The handle must not be used after this call.
|
||||||
*/
|
*/
|
||||||
void wallet_ffi_destroy(struct WalletHandle *handle);
|
void wallet_ffi_destroy(struct WalletHandle *handle);
|
||||||
@ -656,7 +656,8 @@ enum WalletFfiError wallet_ffi_save(struct WalletHandle *handle);
|
|||||||
* - `handle`: Valid wallet handle
|
* - `handle`: Valid wallet handle
|
||||||
*
|
*
|
||||||
* # Returns
|
* # Returns
|
||||||
* - Pointer to null-terminated string on success (caller must free with `wallet_ffi_free_string()`)
|
* - Pointer to null-terminated string on success (caller must free with
|
||||||
|
* `wallet_ffi_free_string()`)
|
||||||
* - Null pointer on error
|
* - Null pointer on error
|
||||||
*
|
*
|
||||||
* # Safety
|
* # Safety
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user