From 95bcd17705af8e85df9893025608f2ea4f57bf37 Mon Sep 17 00:00:00 2001 From: Micah Elizabeth Scott Date: Tue, 25 Jul 2023 19:28:06 -0700 Subject: Include a basic Rust wrapper for Equi-X and HashX The idea behind this is that we may want to start exporting more pieces of c-tor as Rust crates so that Arti can perform cross compatibility and comparison testing using Rust tooling. This turns the 'tor' repo into a Cargo workspace, and adds one crate to start with: "tor-c-equix", rooted in src/ext/equix. This actually includes both Equi-X itself and HashX, since there's less overall duplication if we package these together instead of packaging HashX separately. This patch adds a basic safe Rust interface, but doesn't expose any additional internals for testing purposes. No changes to the C code here or the normal Tor build system. Signed-off-by: Micah Elizabeth Scott --- Cargo.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000000..44f3cfbd58 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +# See doc/HACKING/Rust.md +# +# There is no plan to offer a stable Rust API to the C implementation of Tor. +# This workspace is for wrapper crates that are used internally by Arti for +# cross-compatibility and comparison testing. + +[workspace] + +members = [ + "src/ext/equix", +] + +resolver = "2" + -- cgit v1.2.3-54-g00ecf