Skip to content

Commit

Permalink
Merge pull request #74 from KasarLabs/deoxys/dev
Browse files Browse the repository at this point in the history
Deoxys/dev
  • Loading branch information
antiyro authored Oct 22, 2023
2 parents 9d692e5 + 1a891e2 commit dbcf636
Show file tree
Hide file tree
Showing 69 changed files with 317 additions and 6,137 deletions.
10 changes: 8 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"eslint.workingDirectories": ["tests"]
}
"eslint.workingDirectories": [
"tests"
],
"editor.formatOnSave": false,
"[rust]": {
"editor.formatOnSave": false
}
}
111 changes: 22 additions & 89 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ members = [
"crates/client/storage",
"crates/client/transaction-pool",
"crates/client/deoxys",
"crates/client/starknet_client",
"starknet-rpc-test",
]
# All previous except for `starknet-rpc-test`
Expand Down Expand Up @@ -181,7 +180,7 @@ cairo-vm = { git = "https://github.com/keep-starknet-strange/cairo-rs", branch =
] }
starknet-crypto = { version = "0.6.0", default-features = false }
starknet-core = { version = "0.6.0", default-features = false }
starknet-providers = { version = "0.6.0", default-features = false }
starknet-gateway = { version = "0.6.0", default-features = false }
starknet-ff = { version = "0.3.4", default-features = false }
starknet-signers = { version = "0.4.0" }
starknet-accounts = { version = "0.5.0" }
Expand Down Expand Up @@ -236,7 +235,6 @@ phf = { version = "0.11", default-features = false }

# Deoxys
mc-deoxys = { path = "crates/client/deoxys" }
starknet_client = { path = "crates/client/starknet_client" }
tokio = "1.24.2"
assert_matches = "1.5.0"
mockito = "0.31.0"
Expand Down
7 changes: 4 additions & 3 deletions crates/client/deoxys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,24 @@ repository = "https://github.com/KasarLabs/deoxys"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
starknet-gateway = "0.6"
reqwest = "0.11"
serde_json = "1"

blockifier = { workspace = true, default-features = false, features = [
"testing",
] }
env_logger = "0.9.0"
log = { version = "0.4.14" }
mockito = { workspace = true }
pallet-starknet = { workspace = true }
reqwest = { workspace = true }
serde_json = { workspace = true }
sp-core = { workspace = true, features = ["std"] }
starknet-core = { workspace = true }
starknet-ff = { workspace = true, default-features = false, features = [
"alloc",
"serde",
] }
starknet_api = { workspace = true, default-features = false }
starknet_client = { workspace = true }
tokio = { workspace = true, features = ["macros", "test-util"] }
# test_utils = { path = "./test_utils", optional = true }
hex = "0.4"
Expand Down
Loading

0 comments on commit dbcf636

Please sign in to comment.