File tree 10 files changed +19
-1
lines changed
adapters/src/databento/python
infrastructure/src/python
10 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ docs-python: install-just-deps-all
70
70
71
71
.PHONY : docs-rust
72
72
docs-rust :
73
- (cd nautilus_core && RUSTDOCFLAGS=" --enable-index-page -Zunstable-options --allow warnings --allow errors " cargo +nightly doc --no-deps)
73
+ (cd nautilus_core && RUSTDOCFLAGS=" --enable-index-page -Zunstable-options" cargo +nightly doc --no-deps)
74
74
75
75
.PHONY : clippy
76
76
clippy :
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use pyo3:: { prelude:: * , pymodule} ;
17
19
18
20
pub mod cash;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
pub mod enums;
17
19
pub mod historical;
18
20
pub mod live;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
pub mod clock;
17
19
pub mod enums;
18
20
pub mod logging;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use std:: fmt;
17
19
18
20
use pyo3:: {
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use pyo3:: { prelude:: * , pymodule} ;
17
19
18
20
pub mod average;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use pyo3:: { prelude:: * , pymodule} ;
17
19
18
20
#[ cfg( feature = "redis" ) ]
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use pyo3:: prelude:: * ;
17
19
18
20
pub mod common;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
pub mod http;
17
19
#[ allow( dead_code) ]
18
20
mod ratelimiter;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
// -------------------------------------------------------------------------------------------------
15
15
16
+ #![ allow( warnings) ] // non-local `impl` definition, temporary allow until pyo3 upgrade
17
+
16
18
use pyo3:: prelude:: * ;
17
19
18
20
pub mod backend;
You can’t perform that action at this time.
0 commit comments