mac-human-design 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +12 -0
- package/package.json +1 -1
- package/src-tauri/Cargo.toml +3 -0
package/changelog.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
This file tracks changes between published npm versions of `mac-human-design`.
|
|
4
4
|
|
|
5
|
+
## 0.1.19
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Declared Tauri's `cfg(mobile)` build configuration in the shared system
|
|
10
|
+
symbols crate so macOS consumers no longer see an `unexpected_cfgs` warning
|
|
11
|
+
when running native builds.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Bumped the package to `0.1.19`.
|
|
16
|
+
|
|
5
17
|
## 0.1.18
|
|
6
18
|
|
|
7
19
|
### Changed
|
package/package.json
CHANGED
package/src-tauri/Cargo.toml
CHANGED
|
@@ -9,6 +9,9 @@ license = "MIT"
|
|
|
9
9
|
[dependencies]
|
|
10
10
|
tauri = { version = "2", features = ["macos-private-api"] }
|
|
11
11
|
|
|
12
|
+
[lints.rust]
|
|
13
|
+
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(mobile)'] }
|
|
14
|
+
|
|
12
15
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
13
16
|
base64 = "0.22"
|
|
14
17
|
objc2 = "0.6"
|