Skip to content
Draft
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
16 changes: 12 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ members = [
"quickfix-msg42",
"quickfix-msg43",
"quickfix-msg44",
"quickfix-msg50",
"quickfix-msg50", "quickfix-native",
]
11 changes: 11 additions & 0 deletions quickfix-native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "quickfix-native"
version = "0.1.0"
edition = "2024"

[dependencies]
thiserror = "2.0.12"
quickfix-spec-parser = { path = "../quickfix-spec-parser", version = "0.1.0" }

[lints.clippy]
uninlined_format_args = "allow"
31 changes: 31 additions & 0 deletions quickfix-native/TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
## Basics:

- [x] Dictionary class
- [x] SessionID class
- [ ] DataDictionary class


## Core message types:

- [ ] Message class
- [ ] Header class
- [ ] Trailer class
- [ ] Group class


## Session management:

- [ ] SessionSettings class
- [ ] Session class


## Storage backends:

- [ ] NullStoreFactory / MemoryStoreFactory (simplest)
- [ ] FileStoreFactory (more complex)


## Network layer:

- [ ] SocketAcceptor
- [ ] SocketInitiator
Loading