add rust toolchain config file (#35)
Some checks are pending
test / test (macos-latest) (push) Waiting to run
test / test (ubuntu-latest) (push) Waiting to run
test / test (windows-latest) (push) Waiting to run

This commit is contained in:
Josh Thomas 2024-12-15 22:41:51 -06:00 committed by GitHub
parent e7d0cb1245
commit 4cf08025bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -19,6 +19,7 @@ manifest-path = "../../crates/djls/Cargo.toml"
module-name = "djls" module-name = "djls"
strip = true strip = true
include = [ include = [
{ path = "../../rust-toolchain.toml", format = ["sdist", "wheel"] },
{ path = "../../proto/**/*", format = ["sdist", "wheel"] }, { path = "../../proto/**/*", format = ["sdist", "wheel"] },
{ path = "../../LICENSE", format = "sdist" }, { path = "../../LICENSE", format = "sdist" },
] ]

2
rust-toolchain.toml Normal file
View file

@ -0,0 +1,2 @@
[toolchain]
channel = "1.83"