From d555967563e6b407d97c5eea9992610dd45eee86 Mon Sep 17 00:00:00 2001 From: Edward Amsden Date: Wed, 1 Feb 2023 18:28:47 -0600 Subject: [PATCH] [ares]: import custom murmur3 and add feature flag for acyclic check --- rust/ares/Cargo.toml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/rust/ares/Cargo.toml b/rust/ares/Cargo.toml index 0133b71..42967d4 100644 --- a/rust/ares/Cargo.toml +++ b/rust/ares/Cargo.toml @@ -10,8 +10,26 @@ edition = "2018" bitvec = "1.0.0" either = "1.6.1" libc = "0.2.126" -murmur3 = "0.5.1" +murmur3 = { git = "https://github.com/tloncorp/murmur3", branch = "eamsden/non_copying" } memmap = "0.7.0" intmap = "1.1.0" num-traits = "0.2" num-derive = "0.3" +criterion = "0.4" + +[[bin]] +name = "cue_pill" +path = "benches/cue_pill.rs" + +[[bin]] +name = "ares" +path = "src/main.rs" + +[profile.dev] +opt-level = 3 + +[profile.dev.package."*"] +opt-level = 3 + +[features] +check_acyclic=[]