text example fails to compile
bug
```sh-session
$ cargo run -p text
[...]
Compiling bevy v0.16.1
Compiling bevy_vello v0.10.2 (/Users/aw/Projects/rectalogic/experiments/vendor/bevy_vello)
error: cannot find macro `warn` in this scope
--> src/integrations/text/vello_text.rs:245:13
|
245 | ... warn!("VelloTextSection: font {:?} not found", text.style.font);
| ^^^^
|
= note: `warn` is in scope, but it is an attribute: `#[warn]`
help: consider importing this macro
|
1 + use tracing::warn;
|
error: cannot find macro `warn` in this scope
--> src/integrations/text/vello_text.rs:271:13
|
271 | ... warn!("VelloTextSection: font {:?} not found", text.style.font);
| ^^^^
|
= note: `warn` is in scope, but it is an attribute: `#[warn]`
help: consider importing this macro
|
1 + use tracing::warn;
|
error: could not compile `bevy_vello` (lib) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
```
关闭于 2025-07-09 0 条评论