File tree 5 files changed +12
-0
lines changed
5 files changed +12
-0
lines changed Original file line number Diff line number Diff line change
1
+ #![ doc( html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png" ) ]
2
+ #![ doc( html_root_url = "https://docs.rs/rustpython-bytecode/" ) ]
3
+
1
4
pub mod bytecode;
Original file line number Diff line number Diff line change 1
1
//! Compile a Python AST or source code into bytecode consumable by RustPython or
2
2
//! (eventually) CPython.
3
+ #![ doc( html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png" ) ]
4
+ #![ doc( html_root_url = "https://docs.rs/rustpython-compiler/" ) ]
3
5
4
6
#[ macro_use]
5
7
extern crate log;
Original file line number Diff line number Diff line change 1
1
#![ recursion_limit = "128" ]
2
+ #![ doc( html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png" ) ]
3
+ #![ doc( html_root_url = "https://docs.rs/rustpython-derive/" ) ]
2
4
3
5
extern crate proc_macro;
4
6
Original file line number Diff line number Diff line change
1
+ #![ doc( html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png" ) ]
2
+ #![ doc( html_root_url = "https://docs.rs/rustpython-parser/" ) ]
3
+
1
4
#[ macro_use]
2
5
extern crate log;
3
6
use lalrpop_util:: lalrpop_mod;
Original file line number Diff line number Diff line change 11
11
clippy:: let_and_return,
12
12
clippy:: implicit_hasher
13
13
) ]
14
+ #![ doc( html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/master/logo.png" ) ]
15
+ #![ doc( html_root_url = "https://docs.rs/rustpython-vm/" ) ]
14
16
15
17
#[ cfg( feature = "flame-it" ) ]
16
18
#[ macro_use]
You can’t perform that action at this time.
0 commit comments