Skip to content

Commit 3c584ca

Browse files
authored
Merge pull request #4 from flyingrobots/echo/math-validation-fixtures
Core: add deterministic math module
2 parents fe0dc94 + 523398b commit 3c584ca

File tree

8 files changed

+1178
-9
lines changed

8 files changed

+1178
-9
lines changed

Cargo.lock

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

crates/rmg-core/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,8 @@ edition = "2024"
77
blake3 = "1"
88
bytes = "1"
99
thiserror = "1"
10+
11+
[dev-dependencies]
12+
once_cell = "1"
13+
serde = { version = "1", features = ["derive"] }
14+
serde_json = "1"

crates/rmg-core/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ use blake3::Hasher;
1111
use bytes::Bytes;
1212
use thiserror::Error;
1313

14+
pub mod math;
15+
1416
const POSITION_VELOCITY_BYTES: usize = 24;
1517
/// Public identifier for the built-in motion update rule.
1618
pub const MOTION_RULE_NAME: &str = "motion/update";

0 commit comments

Comments
 (0)