File tree 1 file changed +5
-1
lines changed
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;
1881
1881
- ` no_start ` - disable linking to the ` native ` crate, which specifies the
1882
1882
"start" language item.
1883
1883
- ` 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.
1885
1885
` #![plugin(foo, bar)] ` . Optional arguments for each plugin,
1886
1886
i.e. ` #![plugin(foo(... args ...))] ` , are provided to the plugin's
1887
1887
registrar function. The ` plugin ` feature gate is required to use
1888
1888
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"] ` .
1889
1893
1890
1894
### Module-only attributes
1891
1895
You can’t perform that action at this time.
0 commit comments