Skip to content

Commit d385b1f

Browse files
sync from internal repository
1 parent 2416bea commit d385b1f

File tree

6 files changed

+314
-5
lines changed

6 files changed

+314
-5
lines changed

Cargo.toml

Lines changed: 0 additions & 3 deletions
This file was deleted.

bin/build-wheels

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ set -euo pipefail
33
cd "$(dirname "${BASH_SOURCE[0]}")/.."
44

55
echo "Building dkdc-md-cli wheels..."
6-
uv run maturin build --release --out dist "$@"
6+
uv run maturin build --release "$@"
77

88
echo "Wheel build complete!"

dkdc-md-cli-py/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fn run(argv: Vec<String>) -> PyResult<()> {
77
}
88

99
#[pymodule]
10-
fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> {
10+
fn core(m: &Bound<'_, PyModule>) -> PyResult<()> {
1111
m.add_function(wrap_pyfunction!(run, m)?)?;
1212
Ok(())
1313
}
File renamed without changes.

dkdc-md-cli/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[workspace]
2+
13
[package]
24
name = "dkdc-md-cli"
35
version = "0.1.0"

uv.lock

Lines changed: 310 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)