diff --git a/Cargo.toml b/Cargo.toml index d8f9d4ac0b9..16404618540 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,6 +70,7 @@ members = [ "lib/wasm-interface", "lib/journal", "lib/swift", + "lib/package", "tests/integration/cli", "tests/integration/ios", "tests/lib/compiler-test-derive", diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 844ed275407..28aa443330d 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -2,6 +2,8 @@ name = "wasmer-swift" version = "0.1.0" edition = "2021" +description = "Experimental wasmer bindings for swift" +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,14 +15,14 @@ name = "wasmer_swift" thiserror = "1" tokio = { version = "1.28.1", features = [ "rt" ], default-features = false } uniffi = "0.27" -virtual-fs = { path = "../virtual-fs", version = "0.18.0", default-features = false, features = [ +virtual-fs = { path = "../virtual-fs", version = "=0.18.0", default-features = false, features = [ "webc-fs", ] } -wasmer = { version = "5.0.0-rc.1", path = "../api", default-features = false, features = [ +wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false, features = [ "wamr", "std", ] } -wasmer-wasix.workspace = true +wasmer-wasix = { version = "=0.29.0", path = "../wasix" } webc.workspace = true