-
I've tried all sorts of variations on what I see in the demo app tomals but am unable to get rust to recognize the DatePickerButton or chrono. In s simple "Hello World" app, I added the two lines in the demo widget app.
The tomal based on what I see in the demo app is below. I'm using a local cloned recent version and before adding the two lines and the chrono = ... the app compiles fine. The errors, below, occur when I add the chrono = part. If I try to add features = ["egui_datepicker"] in the equi_extras, I get the same error. If I remove the chrono = part and use egui_extras::.., no DatePickerButton is an option to choose. Thanks for your help! [features] [dependencies] The error I get is the following: the package failed to select a version for |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Finally figure it out. egui_extras = { path = "../egui/egui_extras/", default-features = false, features = ["chrono"]} |
Beta Was this translation helpful? Give feedback.
Finally figure it out. egui_extras = { path = "../egui/egui_extras/", default-features = false, features = ["chrono"]}
Figures just as I posted a question.