This is an automated email from the ASF dual-hosted git repository.
shanedell pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-extra.git
from 3eb1acc First version (0.1.0) of lsbfdump tool
new 6154804 Add lsbfdump example using Scala and Rust
new 1730581 remove Cargo.lock from git, add to gitignore
new 6237b5f remove CustomSeek code, rename read_seek.rs to stdin_seek.rs
new cc7f52e remove StdinSeek and instead loop over reading of stdin
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 7 ++
{lsbfdump => lsbfdump-jni-rs}/LICENSE | 0
lsbfdump-jni-rs/README.md | 76 +++++++++++++++
lsbfdump-jni-rs/build.sbt | 35 +++++++
lsbfdump-jni-rs/native/Cargo.toml | 11 +++
lsbfdump-jni-rs/native/src/helper_functions.rs | 69 ++++++++++++++
lsbfdump-jni-rs/native/src/lib.rs | 97 +++++++++++++++++++
.../project/build.properties | 0
lsbfdump-jni-rs/project/plugins.sbt | 2 +
.../scala/org/apache/daffodil/lsbfDump/FFI.scala | 13 ++-
.../org/apache/daffodil/lsbfDump/LSBFDump.scala | 105 +--------------------
.../org/apache/daffodil/lsbfDump/FFITest.scala | 22 ++++-
lsbfdump/build.sbt | 2 +
13 files changed, 334 insertions(+), 105 deletions(-)
copy {lsbfdump => lsbfdump-jni-rs}/LICENSE (100%)
create mode 100644 lsbfdump-jni-rs/README.md
create mode 100644 lsbfdump-jni-rs/build.sbt
create mode 100644 lsbfdump-jni-rs/native/Cargo.toml
create mode 100644 lsbfdump-jni-rs/native/src/helper_functions.rs
create mode 100644 lsbfdump-jni-rs/native/src/lib.rs
copy {lsbfdump => lsbfdump-jni-rs}/project/build.properties (100%)
create mode 100644 lsbfdump-jni-rs/project/plugins.sbt
copy lsbfdump/project/plugins.sbt =>
lsbfdump-jni-rs/src/main/scala/org/apache/daffodil/lsbfDump/FFI.scala (73%)
copy {lsbfdump =>
lsbfdump-jni-rs}/src/main/scala/org/apache/daffodil/lsbfDump/LSBFDump.scala
(55%)
copy lsbfdump/project/plugins.sbt =>
lsbfdump-jni-rs/src/test/scala/org/apache/daffodil/lsbfDump/FFITest.scala (62%)