You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to release Ballista 43.0.0, but running cargo publish for the scheduler crate fails with:
error: cannot find derive macro `Deserialize` in this scope
--> /Users/andy/git/apache/datafusion-ballista/target/package/ballista-scheduler-43.0.0/target/debug/build/ballista-scheduler-a26118d4b65eb90d/out/scheduler_configure_me_config.rs:414:14
|
414 | #[derive(Deserialize, Default)]
| ^^^^^^^^^^^
|
help: consider importing one of these derive macros
|
411 + use configure_me::Deserialize;
|
411 + use serde::Deserialize;
|
error: cannot find attribute `serde` in this scope
--> /Users/andy/git/apache/datafusion-ballista/target/package/ballista-scheduler-43.0.0/target/debug/build/ballista-scheduler-a26118d4b65eb90d/out/scheduler_configure_me_config.rs:415:7
|
415 | #[serde(crate = "crate::configure_me::serde")]
| ^^^^^
|
= note: `serde` is in scope, but it is a crate, not an attribute
error[E0277]: the trait bound `config::raw::Config: Deserialize<'_>` is not satisfied
--> /Users/andy/git/apache/datafusion-ballista/target/package/ballista-scheduler-43.0.0/target/debug/build/ballista-scheduler-a26118d4b65eb90d/out/scheduler_configure_me_config.rs:453:13
|
453 | ::configure_me::toml::from_slice(&config_content).map_err(|error| super::Error::ConfigParsing { file: config_file_name.as_ref().into(), error })
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Deserialize<'_>` is not implemented for `config::raw::Config`
|
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
I am trying to release Ballista 43.0.0, but running
cargo publish
for the scheduler crate fails with:To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: