Skip to content

Commit 73bbf44

Browse files
committed
revision: final touches
1 parent ba6533b commit 73bbf44

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "2"
2+
resolver = "3"
33
members = ["packages/*", "examples/*"]
44

55
package.authors = [
@@ -9,13 +9,14 @@ package.authors = [
99
"marc2332",
1010
"ealmloff",
1111
]
12-
package.edition = "2021"
12+
package.edition = "2024"
1313
package.license = "MIT OR Apache-2.0"
1414
package.homepage = "https://dioxuslabs.com"
1515
package.repository = "https://github.com/DioxusLabs/sdk/"
1616

1717
[workspace.dependencies]
1818
# Workspace
19+
dioxus-sdk = { path = "packages/sdk" }
1920
dioxus-time = { path = "packages/time" }
2021
dioxus-storage = { path = "packages/storage" }
2122
dioxus-geolocation = { path = "packages/geolocation" }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

packages/sdk/src/lib.rs

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,33 @@
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;

0 commit comments

Comments
 (0)