-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replaced ndarray by arrow2 in ChannelData * removed channel_data_valid * update cargo.lock * more anyhow context * MdBlock parsing for TX tag
- Loading branch information
Showing
23 changed files
with
5,765 additions
and
7,891 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "mdfr" | ||
version = "0.4.3" | ||
version = "0.5.0" | ||
description = "A package for reading and writing MDF files" | ||
authors = ["ratal <[email protected]>"] | ||
edition = "2021" | ||
|
@@ -17,7 +17,7 @@ anyhow = { version = "1.0", features = ["backtrace"] } # error handling | |
log = "0.4" # to log events | ||
byteorder = "1.4" # for bytes conversions | ||
binrw = "0.13" # to efficiently read blocks | ||
num = { version = "0.4", features = ["serde"] } # for complex numbers | ||
num-traits = "0.2" | ||
half = "2" # for f16 handling | ||
encoding_rs = "0.8" # for endian management and bytes to text conversion (utf8, SBC, UTF16) | ||
codepage = "0.1" # to convert code page into encoding | ||
|
@@ -47,7 +47,7 @@ arrow2 = { version = "0.18", features = [ | |
"io_parquet", | ||
"io_parquet_compression", | ||
] } # for efficient data storing in memory | ||
polars = { version = "0.35", features = [ | ||
polars = { version = "0.37", features = [ | ||
"dtype-full", | ||
"object", | ||
"fmt", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.