File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -1881,11 +1881,15 @@ type int8_t = i8;
18811881- ` no_start ` - disable linking to the ` native ` crate, which specifies the
18821882 "start" language item.
18831883- ` no_std ` - disable linking to the ` std ` crate.
1884- - ` plugin ` — load a list of named crates as compiler plugins, e.g.
1884+ - ` plugin ` - load a list of named crates as compiler plugins, e.g.
18851885 ` #![plugin(foo, bar)] ` . Optional arguments for each plugin,
18861886 i.e. ` #![plugin(foo(... args ...))] ` , are provided to the plugin's
18871887 registrar function. The ` plugin ` feature gate is required to use
18881888 this attribute.
1889+ - ` recursion_limit ` - Sets the maximum depth for potentially
1890+ infinitely-recursive compile-time operations like
1891+ auto-dereference or macro expansion. The default is
1892+ ` #![recursion_limit="64"] ` .
18891893
18901894### Module-only attributes
18911895
You can’t perform that action at this time.
0 commit comments