File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,6 @@ dialoguer = "0.11"
1919libloading = " 0.8"
2020cargo_metadata = " 0.15"
2121semver = " 1.0"
22+
23+ [lints .rust ]
24+ missing_docs = " warn"
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ macro_rules! stub_symbols {
2626 } ;
2727 ( @INTERNAL ; $s: ident) => {
2828 #[ allow( non_upper_case_globals) ]
29+ #[ allow( missing_docs) ]
2930 #[ no_mangle]
3031 pub static mut $s: * mut ( ) = :: std:: ptr:: null_mut( ) ;
3132 } ;
Original file line number Diff line number Diff line change 1- // Mock macro for the `allowed_bindings.rs` script.
1+ //! # `cargo-php` CLI
2+ //!
3+ //! Installs extensions and generates stub files for PHP extensions generated
4+ //! with `ext-php-rs`. Use `cargo php --help` for more information.
5+
6+ /// Mock macro for the `allowed_bindings.rs` script.
27#[ cfg( not( windows) ) ]
38macro_rules! bind {
49 ( $( $s: ident) ,* ) => {
You can’t perform that action at this time.
0 commit comments