Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ __pycache__/
# Contains mutation testing data
**/mutants.out*/

# merutable catalog artifacts (from tests/smoke runs at repo root)
version-hint.text
metadata/*.metadata.json
metadata/*.metadata.pb

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
Expand Down
184 changes: 174 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ resolver = "2"
members = [
"crates/merutable",
"crates/merutable-python",
"crates/merutable-capi",
]
# merutable-python requires Python dev headers + PyO3; exclude from
# default `cargo test/clippy --workspace` so CI doesn't need Python.
# Build it explicitly via `maturin develop` (see lab/setup.sh).
default-members = [
"crates/merutable",
"crates/merutable-capi",
]

[workspace.dependencies]
Expand Down
16 changes: 16 additions & 0 deletions crates/merutable-capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "merutable-capi"
version = "0.1.0"
edition = "2021"
description = "C ABI bindings for merutable"

[lib]
crate-type = ["cdylib", "staticlib"]

[dependencies]
merutable = { path = "../merutable" }
tokio = { workspace = true }
bytes = { workspace = true }

[build-dependencies]
cbindgen = "0.27"
Loading
Loading