fix iOS build

feat/orm-diffs^2
Niko PLP 12 hours ago
parent ad94c01c69
commit 26051b6257
  1. 6
      Cargo.lock
  2. 5
      DEV.md
  3. 5
      app/nextgraph/src-tauri/src/lib.rs
  4. 2
      engine/oxigraph/Cargo.toml
  5. 2
      engine/storage-rocksdb/Cargo.toml
  6. 2
      sdk/python/Cargo.toml

6
Cargo.lock generated

@ -3285,7 +3285,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
dependencies = [
"cfg-if",
"windows-targets 0.53.3",
"windows-targets 0.48.5",
]
[[package]]
@ -3820,8 +3820,8 @@ dependencies = [
[[package]]
name = "ng-rocksdb"
version = "0.21.0-ngpreview.7"
source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#0861351ab34188cb2ed71ee865f463d80019b165"
version = "0.21.0-ngpreview.8"
source = "git+https://git.nextgraph.org/NextGraph/rust-rocksdb.git?branch=master#d21a1b4ae64f7025d2b8be7f70f4e1a2562113c2"
dependencies = [
"bindgen",
"bzip2-sys",

@ -6,6 +6,11 @@
On OpenBSD, for LLVM you need to choose llvm-17.
On MacOS, there are several bugs with LLVM above version 17. So you have to install version 17 only.
```
brew install llvm@17
```
On all platforms, we have to install wasm-pack this way:
```

@ -34,6 +34,11 @@ use ng_wallet::*;
use nextgraph::local_broker::*;
#[cfg(mobile)]
mod mobile;
#[cfg(mobile)]
pub use mobile::*;
pub type SetupHook = Box<dyn FnOnce(&mut App) -> Result<(), Box<dyn std::error::Error>> + Send>;
#[tauri::command(rename_all = "snake_case")]

@ -51,7 +51,7 @@ ng-repo = { path = "../repo", version = "0.1.2" }
[target.'cfg(all(not(target_family = "wasm"),not(docsrs)))'.dependencies]
libc = "0.2"
ng-rocksdb = { version = "0.21.0-ngpreview.7", git = "https://git.nextgraph.org/NextGraph/rust-rocksdb.git", branch = "master", features = [ ] }
ng-rocksdb = { version = "0.21.0-ngpreview.8", git = "https://git.nextgraph.org/NextGraph/rust-rocksdb.git", branch = "master", features = [ ] }
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.3.3", features = ["wasm_js"] }

@ -20,4 +20,4 @@ ng-repo = { path = "../repo", version = "0.1.2" }
git = "https://git.nextgraph.org/NextGraph/rust-rocksdb.git"
branch = "master"
features = [ ]
version = "0.21.0-ngpreview.7"
version = "0.21.0-ngpreview.8"

@ -17,7 +17,7 @@ name = "nextgraphpy"
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.23.3"
pyo3 = "0.23.5"
pyo3-async-runtimes = { version = "0.23", features = ["async-std-runtime"] }
pythonize = "0.23.0"
async-std = "1.12.0"

Loading…
Cancel
Save