File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,13 @@ gethostname = "1.1.0"
4949mockito = " 1.7.2"
5050testcontainers-modules = { version = " 0.14.0" , features = [" redis" ] }
5151
52-
5352[build-dependencies ]
5453prost-build = " 0.14.3"
5554which = " 8.0.0"
5655bindgen = " 0.72.1"
5756aws-lc-rs = { version = " 1" , features = [
5857 " bindgen" ,
5958] } # This is a workaround for failing builds on arm. See: https://github.com/rustls/rustls/issues/1788
59+
60+ [lints .clippy ]
61+ dbg_macro = " deny"
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ fn main() -> Result<()> {
1414 println ! ( "Auto-fetching of protoc is only intended for use in CI, install it manually." )
1515 } else {
1616 let res = Command :: new ( "sudo" ) . arg ( "apt-get" ) . arg ( "update" ) . output ( ) ;
17- dbg ! ( & res) ;
17+ println ! ( "{:?}" , & res) ;
1818 if res. is_err ( ) { } ;
1919 let res = Command :: new ( "sudo" )
2020 . arg ( "apt-get" )
2121 . arg ( "install" )
2222 . arg ( "protobuf-compiler" )
2323 . output ( ) ;
24- dbg ! ( & res) ;
24+ println ! ( "{:?}" , & res) ;
2525 if res. is_err ( ) { } ;
2626 }
2727 } ;
Original file line number Diff line number Diff line change 1+ allow-dbg-in-tests = true
You can’t perform that action at this time.
0 commit comments