mirror of https://codeberg.org/topola/topola.git
fix(topola-cli): Fix CLI build broken since 8216d3a907
This commit is contained in:
parent
f7f2e8f422
commit
cfabfe335a
|
|
@ -15,6 +15,7 @@ use topola::autorouter::PresortBy;
|
||||||
use topola::board::edit::BoardEdit;
|
use topola::board::edit::BoardEdit;
|
||||||
use topola::router::RouterOptions;
|
use topola::router::RouterOptions;
|
||||||
use topola::specctra::design::SpecctraDesign;
|
use topola::specctra::design::SpecctraDesign;
|
||||||
|
use topola::stepper::TimeoutOptions;
|
||||||
|
|
||||||
pub mod cli;
|
pub mod cli;
|
||||||
use cli::Cli;
|
use cli::Cli;
|
||||||
|
|
@ -47,6 +48,10 @@ fn main() -> Result<(), std::io::Error> {
|
||||||
squeeze_through_under_bends: false,
|
squeeze_through_under_bends: false,
|
||||||
routed_band_width: 100.0,
|
routed_band_width: 100.0,
|
||||||
},
|
},
|
||||||
|
timeout: TimeoutOptions {
|
||||||
|
initial: 1.0,
|
||||||
|
progress_bonus: 0.005,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
None,
|
None,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue