Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1eb5a00
Promote versions, promote editions
aerooneqq Feb 25, 2026
236f274
Apply clippy suggestions
aerooneqq Feb 25, 2026
8856377
cargo fmt
aerooneqq Feb 25, 2026
e403503
Use Display instead of ToString
aerooneqq Feb 25, 2026
75d8228
Rc<Box<...>> -> Rc<...>
aerooneqq Feb 27, 2026
0b83428
Rc<Box<...>> -> Rc<...>
aerooneqq Feb 27, 2026
7d8d71d
Update rdkafka version
aerooneqq Feb 27, 2026
61cf601
HashMap<String, ...> -> HashMap<Rc<String>, ...>
aerooneqq Feb 28, 2026
e3c8c75
Rc<String> -> Rc<str>
aerooneqq Feb 28, 2026
5eaf18b
[UNFINISHED] WIP on using Rc<str>
aerooneqq Feb 28, 2026
48a0d14
Adjust metadata map key type
aerooneqq Mar 1, 2026
a125dd7
String -> Rc<str>
aerooneqq Mar 1, 2026
530201a
Apply cargo clippy fixes
aerooneqq Mar 1, 2026
f539776
cargo fmt
aerooneqq Mar 1, 2026
3c0165d
Fix converters
aerooneqq Mar 1, 2026
1ef369e
Revert rdkafka version update
aerooneqq Mar 1, 2026
0343d67
Update cargo lock?
aerooneqq Mar 1, 2026
7a3ed2d
Some packages updates
aerooneqq Mar 1, 2026
76b8d79
cargo fmt
aerooneqq Mar 1, 2026
915091f
Try to run rust ficus unit tests through docker
aerooneqq Mar 2, 2026
7a5ce3f
Fix path separators
aerooneqq Mar 2, 2026
de3099d
the input device is not a TTY
aerooneqq Mar 2, 2026
d428616
Fix infinite timeout issue
aerooneqq Mar 2, 2026
3ff3f2a
Upgrade linfa and ndarray versions
aerooneqq Mar 7, 2026
bb51cc5
Put rand near ndarray
aerooneqq Mar 7, 2026
36035fc
Some clippy fixes
aerooneqq Mar 7, 2026
208da4b
Use default instead of empty
aerooneqq Mar 7, 2026
cbb6ee2
Use Default::default
aerooneqq Mar 7, 2026
6167f1b
Replay fixes
aerooneqq Mar 8, 2026
152c94c
Allow returning mut refs from user data
aerooneqq Mar 8, 2026
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
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.92.0
- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v3
- run: cd ./Ficus/src/rust/ && cargo test --release
env:
RUSTFLAGS: ""

- name: Setup docker
uses: docker/setup-qemu-action@v3

- name: Run Ficus unit tests
run: |
docker build . -f ./Ficus/docker/tests/Tests.Rust.Dockerfile -t rust-ficus-tests
docker run rust-ficus-tests

ficus-integration-tests:
runs-on: ubuntu-latest
Expand Down
Loading
Loading