From 4cf08025bda840f32138de8e41ade79c23d62b17 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Sun, 15 Dec 2024 22:41:51 -0600 Subject: [PATCH] add rust toolchain config file (#35) --- packages/djls-binary/pyproject.toml | 1 + rust-toolchain.toml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/packages/djls-binary/pyproject.toml b/packages/djls-binary/pyproject.toml index e5a4283..626692a 100644 --- a/packages/djls-binary/pyproject.toml +++ b/packages/djls-binary/pyproject.toml @@ -19,6 +19,7 @@ manifest-path = "../../crates/djls/Cargo.toml" module-name = "djls" strip = true include = [ + { path = "../../rust-toolchain.toml", format = ["sdist", "wheel"] }, { path = "../../proto/**/*", format = ["sdist", "wheel"] }, { path = "../../LICENSE", format = "sdist" }, ] diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..a718dc2 --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "1.83"