chore: update OpenHuman version to 0.52.24 and enhance CSP in tauri.conf.json

- Bumped the OpenHuman package version to 0.52.24 in both Cargo.lock files.
- Updated the Content Security Policy (CSP) in tauri.conf.json to allow connections from localhost and 127.0.0.1, improving development flexibility.

These changes ensure compatibility with the latest OpenHuman features and enhance security settings for local development.
This commit is contained in:
Steven Enamakel
2026-04-18 10:36:53 -07:00
parent 3131b3829d
commit 8bdecf6100
3 changed files with 3 additions and 3 deletions
Generated
+1 -1
View File
@@ -4375,7 +4375,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "openhuman"
version = "0.52.20"
version = "0.52.24"
dependencies = [
"aes-gcm",
"anyhow",
+1 -1
View File
@@ -4,7 +4,7 @@ version = 4
[[package]]
name = "OpenHuman"
version = "0.52.20"
version = "0.52.24"
dependencies = [
"cef",
"env_logger",
+1 -1
View File
@@ -23,7 +23,7 @@
}
],
"security": {
"csp": "default-src 'self' 'unsafe-inline' data: blob: https: wss: ipc: http://ipc.localhost; img-src 'self' data: blob: https:; connect-src 'self' ipc: http://ipc.localhost https: wss: data: blob:; frame-src 'self' https: data: blob:"
"csp": "default-src 'self' 'unsafe-inline' data: blob: https: wss: ipc: http://ipc.localhost http://127.0.0.1:* http://localhost:*; img-src 'self' data: blob: https:; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1:* http://localhost:* ws://127.0.0.1:* ws://localhost:* https: wss: data: blob:; frame-src 'self' https: data: blob:"
},
"macOSPrivateApi": true
},