-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: introduce the fhevm-engine-common crate
Used to share code between the coprocessor crate and the executor crate. The executor crate will be used for the fhEVM-native implementation.
- Loading branch information
1 parent
c5f5f5c
commit 707d694
Showing
29 changed files
with
3,783 additions
and
349 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,7 @@ | ||
[package] | ||
name = "fhevm-engine" | ||
version = "0.1.0" | ||
edition = "2021" | ||
[workspace] | ||
resolver = "2" | ||
members = ["coprocessor", "executor", "fhevm-engine-common"] | ||
|
||
[dependencies] | ||
# Common dependencies | ||
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] } | ||
prost = "0.13" | ||
tonic = { version = "0.12", features = ["server"] } | ||
# Optional dependencies | ||
tonic-web = "0.12" | ||
tonic-health = "0.12" | ||
tonic-types = "0.12" | ||
tokio-util = "0.7" | ||
[workspace.dependencies] | ||
tfhe = { version = "0.8.0-alpha.2", features = ["boolean", "shortint", "integer", "aarch64-unix"] } | ||
sqlx = { version = "0.7", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid"] } | ||
serde_json = "1.0" | ||
regex = "1.10.5" | ||
lazy_static = "1.5.0" | ||
clap = { version = "4.5", features = ["derive"] } | ||
lru = "0.12.3" | ||
bincode = "1.3.3" | ||
hex = "0.4" | ||
strum = { version = "0.26", features = ["derive"] } | ||
bigdecimal = "0.4" | ||
|
||
[dev-dependencies] | ||
testcontainers = "0.21" | ||
|
||
[build-dependencies] | ||
tonic-build = "0.12" |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
target |
Oops, something went wrong.