You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -53,7 +89,7 @@ Released on 31st July 2023 (UTC).
53
89
- Fixed Binance commission rates requests for `InstrumentProvider`
54
90
- Fixed Binance `TriggerType` parsing #1154, thanks for reporting @davidblom603
55
91
- Fixed Binance order parsing of invalid orders in execution reports #1157, thanks for reporting @graceyangfan
56
-
-Fixed`BinanceOrderType` members to include undocumented `INSURANCE_FUND`, thanks for reporting @Tzumx
92
+
-Extended`BinanceOrderType` enum members to include undocumented `INSURANCE_FUND`, thanks for reporting @Tzumx
57
93
- Extended `BinanceSpotPermissions` enum members #1161, thanks for reporting @davidblom603
58
94
59
95
---
@@ -74,7 +110,7 @@ We recommend you do not upgrade to this version if you're using the Betfair adap
74
110
- Added core Rust `SocketClient` based on `tokio``TcpStream`, thanks @twitu
75
111
- Added `quote_quantity` parameter to determine if order quantity is denominated in quote currency
76
112
- Added `trigger_instrument_id` parameter to trigger emulated orders from alternative instrument prices
77
-
- Added `use_random_ids` to `add_venue(...)` method, controls whether venue order, position and trade IDs will be random UUID4s (no change to current behaviour)
113
+
- Added `use_random_ids` to `add_venue(...)` method, controls whether venue order, position and trade IDs will be random UUID4s (no change to current behavior)
78
114
- Added `ExecEngineConfig.filter_unclaimed_external_orders` options, if unclaimed order events with an `EXTERNAL` strategy ID should be filtered/dropped
79
115
- Changed `BinanceHttpClient` to use new core HTTP client
80
116
- Defined public API for data, can now import directly from `nautilus_trader.model.data` (denest namespace)
@@ -442,7 +478,7 @@ Released on 12th December 2022 (UTC).
442
478
443
479
### Fixes
444
480
- Fixed `OrderBook` sorting for bid side, thanks @gaugau3000
445
-
- Fixed `MARKET_TO_LIMIT` order initial fill behaviour
481
+
- Fixed `MARKET_TO_LIMIT` order initial fill behavior
Copy file name to clipboardExpand all lines: docs/developer_guide/rust.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,8 @@ their own standard libraries.
23
23
24
24
Great care will be taken with the use of Rusts `unsafe` facility - which just enables a small set of additional language features, thereby changing
25
25
the contract between the interface and caller, shifting some responsibility for guaranteeing correctness
26
-
from the Rust compiler, and onto us. The goal is to realize the advantages of the `unsafe` facility, whilst avoiding _any_ undefined behaviour.
27
-
The definition for what the Rust language designers consider undefined behaviour can be found in the [language reference](https://doc.rust-lang.org/stable/reference/behavior-considered-undefined.html).
26
+
from the Rust compiler, and onto us. The goal is to realize the advantages of the `unsafe` facility, whilst avoiding _any_ undefined behavior.
27
+
The definition for what the Rust language designers consider undefined behavior can be found in the [language reference](https://doc.rust-lang.org/stable/reference/behavior-considered-undefined.html).
28
28
29
29
## Safety Policy
30
30
To maintain the high standards of correctness the project strives for, it's necessary to specify a reasonable policy
0 commit comments