Skip to content

Commit 5533b01

Browse files
committed
fix: storage crate name
1 parent a076931 commit 5533b01

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package.repository = "https://github.com/DioxusLabs/sdk/"
1818
# Workspace
1919
dioxus-sdk = { path = "packages/sdk" }
2020
dioxus-time = { path = "packages/time" }
21-
dioxus-storage = { path = "packages/storage" }
21+
dioxus_storage = { path = "packages/storage" }
2222
dioxus-geolocation = { path = "packages/geolocation" }
2323
dioxus-notification = { path = "packages/notification" }
2424
dioxus-sync = { path = "packages/sync" }

examples/storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
dioxus = { workspace = true, features = ["router"] }
8-
dioxus-storage = { workspace = true }
8+
dioxus_storage = { workspace = true }
99

1010
[features]
1111
default = ["desktop"]

packages/sdk/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repository.workspace = true
1616
[dependencies]
1717
dioxus-geolocation = { workspace = true, optional = true }
1818
dioxus-notification = { workspace = true, optional = true }
19-
dioxus-storage = { workspace = true, optional = true }
19+
dioxus_storage = { workspace = true, optional = true }
2020
dioxus-sync = { workspace = true, optional = true }
2121
dioxus-time = { workspace = true, optional = true }
2222
dioxus-util = { workspace = true, optional = true }
@@ -25,7 +25,7 @@ dioxus-window = { workspace = true, optional = true }
2525
[features]
2626
geolocation = ["dep:dioxus-geolocation"]
2727
notification = ["dep:dioxus-notification"]
28-
storage = ["dep:dioxus-storage"]
28+
storage = ["dep:dioxus_storage"]
2929
sync = ["dep:dioxus-sync"]
3030
time = ["dep:dioxus-time"]
3131
util = ["dep:dioxus-util"]

packages/storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "dioxus-storage"
2+
name = "dioxus_storage"
33
version = "0.1.0-alpha.1"
44

55
description = "Local and persistent storage utilities for Dioxus."

0 commit comments

Comments
 (0)