Skip to content
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

build: introduce the fhevm-engine-common crate #7

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
487 changes: 168 additions & 319 deletions fhevm-engine/Cargo.lock

Large diffs are not rendered by default.

33 changes: 4 additions & 29 deletions fhevm-engine/Cargo.toml
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.
1 change: 1 addition & 0 deletions fhevm-engine/coprocessor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
Loading