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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
debug/
target/

# cargo-mutants output (`just mutants` / `just mutants-diff`)
mutants.out*/

# These are backup files generated by rustfmt
**/*.rs.bk

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- `oath-model` numeric primitives — the root contract's first real content: `Price`
(signed fixed-point `i128`), `Quantity` (unsigned `u128` magnitude), `Side`
(`Buy`/`Sell`), and `ArithmeticError`, with checked `const fn` add/sub that error
rather than wrap (ADR-0023/0027). Dropped `rust_decimal`, `uuid`, and `time` from
`oath-model`; added `proptest` and `serde_json` as dev-dependencies.
- Cargo workspace scaffold (initial 10 domain crates; later restructured — see Changed).
- Workspace-level lint configuration: `rustc`, `clippy` (all, pedantic, nursery, cargo,
and selected restriction-group lints), with test-code exemptions via `.clippy.toml`.
Expand Down
Loading