Skip to content

Commit 6943996

Browse files
committed
fix pkg names and compat charts
1 parent 7d6f3d6 commit 6943996

File tree

8 files changed

+10
-74
lines changed

8 files changed

+10
-74
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +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.7 | 0.7 |
9495
| 0.6 | 0.6 |
9596
| 0.5 | 0.5 |
9697

examples/timing/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# dioxus-time example
1+
# dioxus-sdk-time example
22

3-
Learn how to use the `use_interval` and `use_debounce` hooks in `dioxus-time`.
3+
Learn how to use the `use_interval` and `use_debounce` hooks in `dioxus-sdk-time`.
44

55
Run:
66

7-
```dx serve```
7+
```dx serve```

packages/geolocation/README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,3 @@ fn App() -> Element {
4141
}
4242
}
4343
```
44-
45-
### Dioxus Compatibility
46-
This table represents the compatibility between this crate and Dioxus versions.
47-
The crate version supports a Dioxus version up until the next crate version in the table.
48-
49-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
50-
51-
| Crate Version | Dioxus Version |
52-
| ------------- | -------------- |
53-
| 0.1 | 0.6 |

packages/notification/README.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Send notifications from your Dioxus apps.
99
- [ ] iOs
1010

1111
## Usage
12-
Add `dioxus-notification` to your `Cargo.toml`:
12+
Add `dioxus-sdk-notification` to your `Cargo.toml`:
1313
```toml
1414
[dependencies]
15-
dioxus-notification = "0.1"
15+
dioxus-sdk-notification = "0.1"
1616
```
1717

1818
Example:
@@ -26,15 +26,3 @@ Notification::new()
2626
.show()
2727
.unwrap();
2828
```
29-
30-
31-
32-
### Dioxus Compatibility
33-
This table represents the compatibility between this crate and Dioxus versions.
34-
The crate version supports a Dioxus version up until the next crate version in the table.
35-
36-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
37-
38-
| Crate Version | Dioxus Version |
39-
| ------------- | -------------- |
40-
| 0.1 | 0.6 |

packages/storage/README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,3 @@ fn App() -> Element {
3535
}
3636
}
3737
```
38-
39-
### Dioxus Compatibility
40-
This table represents the compatibility between this crate and Dioxus versions.
41-
The crate version supports a Dioxus version up until the next crate version in the table.
42-
43-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
44-
45-
| Crate Version | Dioxus Version |
46-
| ------------- | -------------- |
47-
| 0.1 | 0.6 |

packages/time/README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,3 @@ fn App() -> Element {
4747
}
4848

4949
```
50-
51-
52-
53-
### Dioxus Compatibility
54-
This table represents the compatibility between this crate and Dioxus versions.
55-
The crate version supports a Dioxus version up until the next crate version in the table.
56-
57-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
58-
59-
| Crate Version | Dioxus Version |
60-
| ------------- | -------------- |
61-
| 0.1 | 0.6 |

packages/util/README.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,8 @@
22
General utilities for Dioxus apps. This crate is a placeholder for now.
33

44
## Usage
5-
Add `dioxus-util` to your `Cargo.toml`:
5+
Add `dioxus-sdk-util` to your `Cargo.toml`:
66
```toml
77
[dependencies]
8-
dioxus-util = "0.1"
8+
dioxus-sdk-util = "0.1"
99
```
10-
11-
### Dioxus Compatibility
12-
This table represents the compatibility between this crate and Dioxus versions.
13-
The crate version supports a Dioxus version up until the next crate version in the table.
14-
15-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
16-
17-
| Crate Version | Dioxus Version |
18-
| ------------- | -------------- |
19-
| 0.1 | 0.6 |

packages/window/README.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,8 @@ Window utilities for Dioxus.
66
- [x] Window Size
77

88
## Usage
9-
Add `dioxus-window` to your `Cargo.toml`:
9+
Add `dioxus-sdk-window` to your `Cargo.toml`:
1010
```toml
1111
[dependencies]
12-
dioxus-window = "0.1"
12+
dioxus-sdk-window = "0.1"
1313
```
14-
15-
16-
### Dioxus Compatibility
17-
This table represents the compatibility between this crate and Dioxus versions.
18-
The crate version supports a Dioxus version up until the next crate version in the table.
19-
20-
E.g. if crate version `0.1` supported Dioxus `0.6` and crate version `0.4` supported Dioxus `0.7`, crate versions `0.1`, `0.2`, and `0.3` would support Dioxus `0.6`.
21-
22-
| Crate Version | Dioxus Version |
23-
| ------------- | -------------- |
24-
| 0.1 | 0.6 |

0 commit comments

Comments
 (0)