We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e872d3 commit 205a2c2Copy full SHA for 205a2c2
Justfile
@@ -1,7 +1,7 @@
1
set unstable
2
3
env_vars := if os() == "linux" {
4
- "LZMA_API_STATIC=1 LIBTORCH=/usr/local"
+ "LZMA_API_STATIC=1 LIBTORCH=/usr"
5
} else if os() == "macos" {
6
"LZMA_API_STATIC=1 LIBTORCH=/opt/homebrew"
7
} else if os() == "windows" {
src/ast/mod.rs
@@ -352,9 +352,7 @@ impl Pipe {
352
self.modules
353
.get(key)
354
.map(|x| &**x as &(dyn Any + Send + Sync))
355
- .and_then(|x| {
356
- x.downcast_ref::<T>()
357
- })
+ .and_then(|x| x.downcast_ref::<T>())
358
}
359
360
pub async fn create_stream(
0 commit comments