Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
56 changes: 56 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ license = "Apache-2.0"
[workspace.dependencies]
bytes = "1.10.1"
insta = "1.43.2"
thiserror = "2.0.17"
1 change: 1 addition & 0 deletions trafix-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ license.workspace = true
[dependencies]
bytes.workspace = true
insta.workspace = true
thiserror.workspace = true
5 changes: 5 additions & 0 deletions trafix-codec/src/constants/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// ASCII SOH delimiter (0x01) used as field terminator in FIX messages.
pub(crate) const SOH: u8 = b'\x01';

/// ASCII equals character (=) used as delimiter between tag and value in a single field.
pub(crate) const EQUALS: u8 = b'=';
Loading