diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 000000000..b8a824bdf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +# Using version 2 to avoid unifying features. For more info, read: +# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2 +resolver = "2" # Specify the resolver version that matches edition 2021 + +members = ["crates/gateway"] diff --git a/crates/gateway/Cargo.toml b/crates/gateway/Cargo.toml new file mode 100644 index 000000000..da116f2d5 --- /dev/null +++ b/crates/gateway/Cargo.toml @@ -0,0 +1,4 @@ +[package] +name = "gateway" +version = "0.1.0" +edition = "2021"