diff --git a/fhevm-engine/sns-executor/Cargo.toml b/fhevm-engine/sns-executor/Cargo.toml index e54d5a01..df116dbb 100644 --- a/fhevm-engine/sns-executor/Cargo.toml +++ b/fhevm-engine/sns-executor/Cargo.toml @@ -13,6 +13,7 @@ prometheus = { workspace = true } prost = { workspace = true } rayon = { workspace = true } sha3 = { workspace = true } +tfhe = { workspace = true} tokio = { workspace = true } tonic = { workspace = true } tracing = { workspace = true } @@ -30,12 +31,6 @@ serde_json = "=1.0" # local dependencies fhevm-engine-common = { path = "../fhevm-engine-common" } -# arch-specific dependencies -[target.'cfg(target_arch = "x86_64")'.dependencies] -tfhe = { workspace = true, features = ["x86_64-unix"] } -[target.'cfg(target_arch = "aarch64")'.dependencies] -tfhe = { workspace = true, features = ["aarch64-unix"] } - [[bin]] name = "sns_worker" path = "src/bin/sns_worker.rs"