Skip to content

Commit 41cfb8b

Browse files
committed
Updated python ._lib
1 parent 41bece4 commit 41cfb8b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/__init__.py

Whitespace-only changes.

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "maturin"
55
[tool.maturin]
66
features = ["pyo3/extension-module"]
77
python-source = "python"
8-
module-name = "mbe._lib"
8+
module-name = "mbinary._lib"
99

1010
[project]
1111
name = "mbinary"

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
keywords = ["midas", "binary-encoding", "protocol-buffers"]
77
license = "Apache-2.0"
88
authors = ["Anthony Baxter <[email protected]>"]
9-
repository = "https://github.com/midassystems/mbn"
9+
repository = "https://github.com/midassystems/mbinary"
1010
edition = "2021"
1111

1212
[dependencies]

rust/src/record_enum.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ mod tests {
272272
};
273273
let dbn_enum = dbn::RecordEnum::Mbp1(dbn_mbp);
274274

275-
//MBN
275+
//mbinary
276276
let mbinary_enum = RecordEnum::Mbp1(Mbp1Msg {
277277
hd: RecordHeader::new::<Mbp1Msg>(1, 1622471124, 0),
278278
price: 12345676543,
@@ -328,7 +328,7 @@ mod tests {
328328
};
329329
let dbn_enum = dbn::RecordEnum::Mbp1(dbn_mbp);
330330

331-
//MBN
331+
//mbinary
332332
let mbinary_enum = RecordEnum::Mbp1(Mbp1Msg {
333333
hd: RecordHeader::new::<Mbp1Msg>(1, 1622471124, 0),
334334
price: 12345676543,

0 commit comments

Comments
 (0)