File tree Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Expand file tree Collapse file tree 4 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 28
28
run : sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libglfw3-dev libwayland-dev libsdl2-dev
29
29
- name : Clone latest GLFW3
30
30
run : git clone https://github.com/glfw/glfw; cd glfw; mkdir build; cd build; cmake ..; make -j$(nproc); sudo make install; cd ../..;
31
- - name : Run doc tests with all features (this also compiles README examples)
32
- run : cargo test --doc --all-features
31
+ - name : Run doc tests (this also compiles README examples)
32
+ run : cargo test --doc
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ license = "Zlib"
7
7
readme = " ../README.md"
8
8
repository = " https://github.com/raylib-rs/raylib-rs"
9
9
10
-
11
10
[dependencies ]
12
11
raylib = { version = " 5.5.0" , path = " ../raylib" }
12
+ raylib_sys = { version = " 5.5.0" , path = " ../raylib-sys" }
13
13
lazy_static = " 1.2.0"
14
14
colored = " 2.1.0"
15
15
Original file line number Diff line number Diff line change @@ -148,6 +148,4 @@ pub mod callback_tests {
148
148
. unwrap ( ) ;
149
149
}
150
150
}
151
-
152
- pub fn set_file_text_loader ( _: & RaylibThread ) { }
153
151
}
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ pub fn test_runner(tests: &[&dyn Testable]) {
91
91
callbacks:: callback_tests:: set_file_data_saver ( & thread) ;
92
92
callbacks:: callback_tests:: set_file_text_saver ( & thread) ;
93
93
callbacks:: callback_tests:: set_file_data_loader ( & thread) ;
94
- callbacks:: callback_tests:: set_file_text_loader ( & thread) ;
95
94
96
95
let args = std:: env:: args ( ) . collect :: < Vec < _ > > ( ) ;
97
96
let opts = match parse_opts ( & args) {
You can’t perform that action at this time.
0 commit comments