File tree Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Expand file tree Collapse file tree 3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 11[workspace ]
2- resolver = " 2 "
2+ resolver = " 3 "
33members = [" packages/*" , " examples/*" ]
44
55package.authors = [
@@ -9,13 +9,14 @@ package.authors = [
99 " marc2332" ,
1010 " ealmloff" ,
1111]
12- package.edition = " 2021 "
12+ package.edition = " 2024 "
1313package.license = " MIT OR Apache-2.0"
1414package.homepage = " https://dioxuslabs.com"
1515package.repository = " https://github.com/DioxusLabs/sdk/"
1616
1717[workspace .dependencies ]
1818# Workspace
19+ dioxus-sdk = { path = " packages/sdk" }
1920dioxus-time = { path = " packages/time" }
2021dioxus-storage = { path = " packages/storage" }
2122dioxus-geolocation = { path = " packages/geolocation" }
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` suppo
9191
9292| Crate Version | Dioxus Version |
9393| ------------- | -------------- |
94- | 0.6 | 0.6 |
94+ | 0.7 | 0.6 |
9595| 0.5 | 0.5 |
9696
9797## License
Original file line number Diff line number Diff line change 1919//! | [`dioxus-window`] | Common window utilities. | `window` |
2020//! | [`dioxus-notification`] | Send notifications. | `notification` |
2121//! | [`dioxus-sync`] | Synchronization primities for Dioxus. | `sync` |
22+ //! | [`dioxus-util`] | Misc utilities for Dioxus. | `util` |
2223//!
2324//! [`dioxus-geolocation`]: https://crates.io/crates/dioxus-geolocation
2425//! [`dioxus-storage`]: https://crates.io/crates/dioxus-storage
2526//! [`dioxus-time`]: https://crates.io/crates/dioxus-time
2627//! [`dioxus-window`]: https://crates.io/crates/dioxus-window
2728//! [`dioxus-notification`]: https://crates.io/crates/dioxus-notification
2829//! [`dioxus-sync`]: https://crates.io/crates/dioxus-sync
30+ //! [`dioxus-util`]: https://crates.io/crates/dioxus-util
2931
3032#[ cfg( feature = "geolocation" ) ]
31- pub use dioxus_geolocation;
33+ pub use dioxus_geolocation as geolocation ;
3234
3335#[ cfg( feature = "notification" ) ]
34- pub use dioxus_notification;
36+ pub use dioxus_notification as notification ;
3537
3638#[ cfg( feature = "storage" ) ]
37- pub use dioxus_storage;
39+ pub use dioxus_storage as storage ;
3840
3941#[ cfg( feature = "sync" ) ]
40- pub use dioxus_sync;
42+ pub use dioxus_sync as sync ;
4143
4244#[ cfg( feature = "time" ) ]
43- pub use dioxus_time;
45+ pub use dioxus_time as time;
46+
47+ #[ cfg( feature = "util" ) ]
48+ pub use dioxus_util as util;
4449
4550#[ cfg( feature = "window" ) ]
46- pub use dioxus_window;
51+ pub use dioxus_window as window ;
You can’t perform that action at this time.
0 commit comments