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"
19
19
libloading = " 0.8"
20
20
cargo_metadata = " 0.15"
21
21
semver = " 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 {
26
26
} ;
27
27
( @INTERNAL ; $s: ident) => {
28
28
#[ allow( non_upper_case_globals) ]
29
+ #[ allow( missing_docs) ]
29
30
#[ no_mangle]
30
31
pub static mut $s: * mut ( ) = :: std:: ptr:: null_mut( ) ;
31
32
} ;
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.
2
7
#[ cfg( not( windows) ) ]
3
8
macro_rules! bind {
4
9
( $( $s: ident) ,* ) => {
You can’t perform that action at this time.
0 commit comments