Skip to content

Commit

Permalink
Move Rust SDK to the separate folder
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Sep 17, 2020
1 parent 96aa1c9 commit bd412a2
Show file tree
Hide file tree
Showing 18 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[workspace]
members = [
# Binaries
"core/bin/data_restore",
"core/bin/key_generator",
"core/bin/server",
"core/bin/prover",
"core/bin/gen_token_add_contract",
"core/bin/parse_pub_data",

# Libraries
"core/lib/circuit",
"core/lib/crypto_exports",
"core/lib/eth_client",
Expand All @@ -15,8 +17,13 @@ members = [
"core/lib/storage",
"core/lib/vlog",

# Test infrastructure
"core/tests/testkit",
"core/tests/loadtest",

# Infrastructure applications
"infrastructure/tok_cli",

# SDK section
"sdk/zksync-rs",
]
6 changes: 3 additions & 3 deletions core/sdk/Cargo.toml → sdk/zksync-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = ["The Matter Labs Team <[email protected]>"]
edition = "2018"

[dependencies]
models = { path = "../models", version = "0.0.1" }
eth_client = { path = "../eth_client", version = "0.1.0" }
crypto_exports = { path = "../crypto_exports", version = "0.1.0" }
models = { path = "../../core/lib/models", version = "0.0.1" }
eth_client = { path = "../../core/lib/eth_client", version = "0.1.0" }
crypto_exports = { path = "../../core/lib/crypto_exports", version = "0.1.0" }
franklin_crypto = { package = "franklin-crypto", git = "https://github.com/matter-labs/franklin-crypto.git", branch="check-franklin-circuit-transpile"}

bellman = { package = "bellman_ce", git = "https://github.com/matter-labs/bellman", branch = "plonk_release" }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit bd412a2

Please sign in to comment.