diff --git a/Cargo.toml b/Cargo.toml index 8f298e0..7c566b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "crossterm" -version = "0.2.2" +version = "0.3.0" authors = ["T Post "] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/TimonPost/crossterm" -documentation = "https://docs.rs/crossterm/0.2.0/crossterm/" +documentation = "https://docs.rs/crossterm/" license = "MIT" keywords = ["console", "color", "cursor", "terminal", "cli"] exclude = ["target", "Cargo.lock"] diff --git a/README.md b/README.md index d8c9ef5..0267666 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ This crate supports all unix and windows terminals down to windows XP (not not a - [Authors](https://github.com/TimonPost/crossterm#authors) - [License](https://github.com/TimonPost/crossterm#license) -## IMPORTANT When updating to version `0.2.3` -Version `0.2.3` of Crossterm will have API braking changes. If you are reading this and your version was automatically incremented to the new version, there will be some broken code. A Quiqe solution? no, unless you did not use this crate that much. If it is important to keep running your code and you don't want to spend some time to fix the errors I recommend you to keep using version `0.2.2` because in version `0.2.3` alternate screen and some other features are introduced. And if you are not using any of these features just downgrade. If however, you want to have the newest version you can check the [upgrade manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md) on how to upgrade to the new version. Check [release node](https://github.com/TimonPost/crossterm/blob/master/docs/ReleaseNotesVersion%200.2.3.md) why these API breaking changes where necessary. +## IMPORTANT When updating to version `0.3.0` +Version `0.3.0` of Crossterm will have API braking changes. If you are reading this and your version was automatically incremented to the new version, there will be some broken code. A Quiqe solution? no, unless you did not use this crate that much. If it is important to keep running your code and you don't want to spend some time to fix the errors I recommend you to keep using version `0.2.2` because in version `0.3.0` alternate screen and some other features are introduced. And if you are not using any of these features just downgrade. If however, you want to have the newest version you can check the [upgrade manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md) on how to upgrade to the new version. Check [release node](https://github.com/TimonPost/crossterm/blob/master/docs/ReleaseNotesVersion%200.3.0.md) why these API breaking changes where necessary. ## Getting Started -This documentation is only for Crossterm version `0.2.3` if you have an older version of Crossterm I suggest you check the [Upgrade Manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md) for more information about how to upgrade to a newer version or check the [README.md](https://github.com/TimonPost/crossterm/tree/master/docs) from the previous versions. Also, you could take a look at the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) which have examples from the previous versions of Crossterm. +This documentation is only for Crossterm version `0.3.0` if you have an older version of Crossterm I suggest you check the [Upgrade Manual](https://github.com/TimonPost/crossterm/blob/master/docs/UpgradeManual.md) for more information about how to upgrade to a newer version or check the [README.md](https://github.com/TimonPost/crossterm/tree/master/docs) from the previous versions. Also, you could take a look at the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) which have examples from the previous versions of Crossterm. Add the Crossterm package to your `Cargo.toml` file. @@ -64,15 +64,15 @@ use self::crossterm::terminal::*; version [0.1.0](https://docs.rs/crossterm/0.1.0/crossterm/), [0.2.0](https://docs.rs/crossterm/0.2.0/crossterm/), [0.2.1](https://docs.rs/crossterm/0.2.1/crossterm/) -and [0.2.3](link) +and [0.3.0](link) - Code Examples: version [0.1.0](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.1.0), [0.2.0](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.2.0), [0.2.1](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.2.1) -and [0.2.3](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.2.3) +and [0.3.0](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.3.0) - [Cargo Page](https://crates.io/crates/crossterm) -- [Real life examples](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.2.3/program_examples) +- [Real life examples](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.3.0/program_examples) # Features These are the features from this crate: @@ -106,7 +106,7 @@ These are the features from this crate: For detailed examples of all Crossterm functionalities check the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) directory. -### Crossterm wrapper | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/crossterm_type/mod.rs) +### Crossterm wrapper | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/crossterm_type/mod.rs) This is a wrapper for the modules crossterm provides. This is introduced to mange the [`Context`](link_to_context) for the user. ``` let crossterm = Crossterm::new(); @@ -121,7 +121,7 @@ crossterm.write("some text"); // print some styled font. println!("{}", crossterm.paint("Red font on blue background").with(Color::Red).on(Color::Blue)); ``` -### Styled font | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/color/mod.rs) +### Styled font | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/color/mod.rs) This module provides the functionalities to style the terminal cursor. ```rust use crossterm::style::{Color}; @@ -162,7 +162,7 @@ println!("{}", crossterm.paint("Reversed color").reverse()); println!("{}", crossterm.paint("Dim text color").dim()); println!("{}", crossterm.paint("Crossed out font").crossed_out()); ``` -### Cursor | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/cursor/mod.rs) +### Cursor | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/cursor/mod.rs) This module provides the functionalities to work with the terminal cursor. ```rust @@ -216,7 +216,7 @@ cursor.blink(true) ``` -### Terminal | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/terminal/terminal.rs) +### Terminal | [see more](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/terminal/terminal.rs) This module provides the functionalities to work with the terminal in general. ```rust @@ -261,7 +261,7 @@ terminal.write("Some text\n Some text on new line"); println!("{}", terminal.paint("x").with(Color::Red).on(Color::Blue)); ``` -Check these links: [AlternateScreen](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/terminal/alternate_screen.rs) and [RawScreen](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/terminal/raw_mode.rs) for information about how to work with these features. +Check these links: [AlternateScreen](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/terminal/alternate_screen.rs) and [RawScreen](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/terminal/raw_mode.rs) for information about how to work with these features. ## Tested terminals diff --git a/docs/README Crossterm Version 0.2.0.md b/docs/README Crossterm Version 0.2.0.md deleted file mode 100644 index fff0df8..0000000 --- a/docs/README Crossterm Version 0.2.0.md +++ /dev/null @@ -1,219 +0,0 @@ -# Crossterm | crossplatform terminal library written in rust. - -Ever got disappointed when a terminal library for rust was only written for unix systems? Crossterm provides the same core functionalities for both windows and unix systems. - -Crossterm aims to be simple and easy to call in code. True the simplicity of crossterm you do not have to worry about the platform your working with. You can just call the action you want to preform and unther water it will check what to do based on the current platform. - -## Getting Started - -Add the crossterm package to your `Cargo.toml` file. - -``` -[dependencies] -crossterm = "*" - -``` - -Add the crate to your solution. -And use the crossterm modules withs you want to use. - -```rust -extern crate crossterm; - -// this module is used for styling the terminal -use self::crossterm::crossterm_style::*; -// this module is used for cursor related actions -use self::crossterm::crossterm_cursor::*; -// this mudule is used for terminal related actions -use self::crossterm::crossterm_terminal::*; - -``` -## Links - -Documentation for the code can be found [here](https://atcentra.com/crossterm/index.html) - -Documentation for the code can be found [here](https://docs.rs/crossterm/0.1.0/crossterm/) - -The Cargo Page can be found [here](https://crates.io/search?q=crossterm) - -## Examples - -For detailed examples of all crossterm functionalities check the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) direcory. - -### Styled font -```rust - use crossterm::crossterm_style::{paint, Color}; - - // Crossterm provides method chaining so that you can style the font nicely. - // the `with()` methods sets the foreground color and the `on()` methods sets the background color - // You can either store the styled font. - let mut styledobject = paint("Stored styled font").with(Color::Red).on(Color::Blue); - println!("{}",styledobject); - - // Or you can print it directly. - println!("{}", paint("Red font on blue background color").with(Color::Red).on(Color::Blue)); - println!("{}", paint("Red font on default background color").with(Color::Red)); - println!("{}", paint("Default font color on Blue background color").on(Color::Blue)); - - /// The following code can only be used for unix systems: - // Set background Color from RGB - println!("RGB (10,10,10): \t {}", paint(" ").on(Color::Rgb {r: 10, g: 10, b: 10})); - // Set background Color from RGB - println!("ANSI value (50): \t {}", paint(" ").on(Color::AnsiValue(50))); - - // Use attributes to syle the font. - println!("{}", paint("Normal text")); - println!("{}", paint("Bold text").bold()); - println!("{}", paint("Italic text").italic()); - println!("{}", paint("Slow blinking text").slow_blink()); - println!("{}", paint("Rapid blinking text").rapid_blink()); - println!("{}", paint("Hidden text").hidden()); - println!("{}", paint("Underlined text").underlined()); - println!("{}", paint("Reversed color").reverse()); - println!("{}", paint("Dim text color").dim()); - println!("{}", paint("Crossed out font").crossed_out()); - -``` -### Cursor -```rust - - use crossterm::crossterm_cursor::get; - - let mut cursor = get(); - - /// Moving the cursor - // Set the cursor to position X: 10, Y: 5 in the terminal - cursor.goto(10,5); - - // Move the cursor to position 3 times to the up in the terminal - cursor.move_up(3); - - // Move the cursor to position 3 times to the right in the terminal - cursor.move_right(3); - - // Move the cursor to position 3 times to the down in the terminal - cursor.move_down(3); - - // Move the cursor to position 3 times to the left in the terminal - cursor.move_left(3); - - // Print an character at X: 10, Y: 5 (see examples for more explanation why to use this method). - // cursor.goto(10,5).print("@"); - - /// Safe the current cursor position to recall later - // Goto X: 5 Y: 5 - cursor.goto(5,5); - // Safe cursor position: X: 5 Y: 5 - cursor.safe_position(); - // Goto X: 5 Y: 20 - cursor.goto(5,20); - // Print at X: 5 Y: 20. - print!("Yea!"); - // Reset back to X: 5 Y: 5. - cursor.reset_position(); - // Print 'Back' at X: 5 Y: 5. - print!("Back"); -``` - -### Terminal -```rust - use crossterm::crossterm_terminal::{get,ClearType}; - - let mut terminal = get(); - - // Clear all lines in terminal; - terminal.clear(ClearType::All); - // Clear all cells from current cursor position down. - terminal.clear(ClearType::FromCursorDown); - // Clear all cells from current cursor position down. - terminal.clear(ClearType::FromCursorUp); - // Clear current line cells. - terminal.clear(ClearType::CurrentLine); - // Clear all the cells until next line. - terminal.clear(ClearType::UntilNewLine); - - // Get terminal size - let terminal_size = terminal.terminal_size().unwrap(); - // Print results - print!("X: {}, y: {}", terminal_size.0, terminal_size.1); - - // Scroll down 10 lines. - terminal.scroll_down(10); - - // Scroll up 10 lines. - terminal.scroll_up(10); - - // Set terminal size - terminal.set_size(10,10); -``` - -## Features crossterm 0.1 - -- Cursor movement. - - Up, Down, Left, Right. - - Goto an certain position. -- Styled output - - Foreground color (16 base colors) - - Background color (16 base colors) -- Terminal - - Clearing - - Scrolling - - Size -- Detailed documentation on every item. -- Examples for every client callable code. - -## Features crossterm 0.2 - -- 256 color support. -- Text Attributes like: bold, italic, underscore and crossed word ect. -- Custom ANSI color code input to set fore- and background color for unix. -- Storing the current cursor position and resetting to that stored cursor position later. -- Resizing the terminal. - -## Tested terminals - -- Windows Powershell - - Windows 10 (pro) -- Windows CMD - - Windows 10 (pro) -- Ubuntu Desktop Terminal - - Ubuntu 17.10 - - -The above terminals have been tested. Crossterm should works also for windows 7, 8 consoles and all ansi supportable consoles. -But these are yet to be tested. -If you have used this library for an terminal other than the above list without issues feel free to add it to the above list. - -## How it works - -Crossterm is using `WINAPI` for windows systems and `ANSI escape codes` for unix systems. Crossterm provides one base trait with can be implemented for a platform specific instance. For example, there is an implementation for windows (`WINAPI`) and unix(`ANSI`) for the `cursor module`. To call the platform specific implementation there is one module that rules them all. Thrue this module the client calls some action and the module will deside what to do based on the current platform. And it will execute that action. - -## Notice -This library is library is stable. There will not be changed mutch in the code design so do not worry to mutch. If there are any changes that affect previous versions I will describe what to change when upgrading crossterm to an newer version. - -## Todo - -- Handling mouse events -- Handling key events -- Tests - -## Contributing - -If you would like to contribute to crossterm, than please design the code as it is now. Each module contains the same structures so we can easely extend to multible platforms. As you study the code you will quiqly see what the architecture is. Maybe later there will be an documentation for how crossterm is design. - -## Versioning - -The current version is crossterm 0.1, every commit I merge the version go's up like 0.1.0 -> 0.1.1 -> 0.1.2. - -When new features arrives the packages will go up like 0.1 -> 0.2 -> 0.3 - -## Authors - -* **Timon Post** - *Project Owner & creator* - -## License - -This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details - - - diff --git a/docs/README Crossterm Version 0.2.1.md b/docs/README Crossterm Version 0.2.1.md deleted file mode 100644 index 0cd46b8..0000000 --- a/docs/README Crossterm Version 0.2.1.md +++ /dev/null @@ -1,240 +0,0 @@ -# Crossterm | crossplatform terminal library written in rust. - -Ever got disappointed when a terminal library for rust was only written for unix systems? Crossterm provides the same core functionalities for both windows and unix systems. - -Crossterm aims to be simple and easy to call in code. True the simplicity of crossterm you do not have to worry about the platform your working with. You can just call the action you want to preform and unther water it will check what to do based on the current platform. - -Currently working on the alternatescreen and raw terminal features. - -## Getting Started - -This documentation is only for crossterm version `0.2.1` check the [Upgrade manual](https://github.com/TimonPost/crossterm/blob/development/UPGRADE%20Manual) for more info - -Add the crossterm package to your `Cargo.toml` file. - -``` -[dependencies] -crossterm = "*" - -``` - -Add the crate to your solution. -And use the crossterm modules withs you want to use. - -```rust -extern crate crossterm; - -// this module is used for styling the terminal -use self::crossterm::style::*; -// this module is used for cursor related actions -use self::crossterm::cursor::*; -// this mudule is used for terminal related actions -use self::crossterm::terminal::*; - -``` -## Links - -Documentation for the code version 0.1 can be found [here](https://docs.rs/crossterm/0.1.0/crossterm/) - -Documentation for the code version 0.2 can be found [here](https://docs.rs/crossterm/0.2.0/crossterm/) - -The Cargo Page can be found [here](https://crates.io/search?q=crossterm) - -## Examples - -For detailed examples of all crossterm functionalities check the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) direcory. - -### Styled font -```rust - use crossterm::style::{paint, Color}; - - // Crossterm provides method chaining so that you can style the font nicely. - // the `with()` methods sets the foreground color and the `on()` methods sets the background color - // You can either store the styled font. - let mut styledobject = paint("Stored styled font").with(Color::Red).on(Color::Blue); - println!("{}",styledobject); - - // Or you can print it directly. - println!("{}", paint("Red font on blue background color").with(Color::Red).on(Color::Blue)); - println!("{}", paint("Red font on default background color").with(Color::Red)); - println!("{}", paint("Default font color on Blue background color").on(Color::Blue)); - - /// The following code can only be used for unix systems: - // Set background Color from RGB - println!("RGB (10,10,10): \t {}", paint(" ").on(Color::Rgb {r: 10, g: 10, b: 10})); - // Set background Color from RGB - println!("ANSI value (50): \t {}", paint(" ").on(Color::AnsiValue(50))); - - // Use attributes to syle the font. - println!("{}", paint("Normal text")); - println!("{}", paint("Bold text").bold()); - println!("{}", paint("Italic text").italic()); - println!("{}", paint("Slow blinking text").slow_blink()); - println!("{}", paint("Rapid blinking text").rapid_blink()); - println!("{}", paint("Hidden text").hidden()); - println!("{}", paint("Underlined text").underlined()); - println!("{}", paint("Reversed color").reverse()); - println!("{}", paint("Dim text color").dim()); - println!("{}", paint("Crossed out font").crossed_out()); - -``` -### Cursor -```rust - - use crossterm::cursor::cursor(); - - let mut cursor = cursor(); - - /// Moving the cursor - // Set the cursor to position X: 10, Y: 5 in the terminal - cursor.goto(10,5); - - // Move the cursor to position 3 times to the up in the terminal - cursor.move_up(3); - - // Move the cursor to position 3 times to the right in the terminal - cursor.move_right(3); - - // Move the cursor to position 3 times to the down in the terminal - cursor.move_down(3); - - // Move the cursor to position 3 times to the left in the terminal - cursor.move_left(3); - - // Print an character at X: 10, Y: 5 (see examples for more explanation why to use this method). - // cursor.goto(10,5).print("@"); - - /// Safe the current cursor position to recall later - // Goto X: 5 Y: 5 - cursor.goto(5,5); - // Safe cursor position: X: 5 Y: 5 - cursor.safe_position(); - // Goto X: 5 Y: 20 - cursor.goto(5,20); - // Print at X: 5 Y: 20. - print!("Yea!"); - // Reset back to X: 5 Y: 5. - cursor.reset_position(); - // Print 'Back' at X: 5 Y: 5. - print!("Back"); -``` - -### Terminal -```rust - use crossterm::terminal::{terminal,ClearType}; - - let mut terminal = terminal(); - - // Clear all lines in terminal; - terminal.clear(ClearType::All); - // Clear all cells from current cursor position down. - terminal.clear(ClearType::FromCursorDown); - // Clear all cells from current cursor position down. - terminal.clear(ClearType::FromCursorUp); - // Clear current line cells. - terminal.clear(ClearType::CurrentLine); - // Clear all the cells until next line. - terminal.clear(ClearType::UntilNewLine); - - // Get terminal size - let terminal_size = terminal.terminal_size().unwrap(); - // Print results - print!("X: {}, y: {}", terminal_size.0, terminal_size.1); - - // Scroll down 10 lines. - terminal.scroll_down(10); - - // Scroll up 10 lines. - terminal.scroll_up(10); - - // Set terminal size - terminal.set_size(10,10); -``` - -## Features crossterm 0.1 - -- Cursor movement. - - Up, Down, Left, Right. - - Goto an certain position. -- Styled output - - Foreground color (16 base colors) - - Background color (16 base colors) -- Terminal - - Clearing - - Scrolling - - Size -- Detailed documentation on every item. -- Examples for every client callable code. - -## Features crossterm 0.2 - -- 256 color support. -- Text Attributes like: bold, italic, underscore and crossed word ect. -- Custom ANSI color code input to set fore- and background color for unix. -- Storing the current cursor position and resetting to that stored cursor position later. -- Resizing the terminal. - -### fixes in crossterm 0.2.1 - -- Default ANSI escape codes for windows machines, if windows does not support ANSI switsh back to WINAPI. -- method grammer mistake fixed [Issue 3](https://github.com/TimonPost/crossterm/issues/3) -- Some Refactorings in method names see [issue 4](https://github.com/TimonPost/crossterm/issues/4) -- Removed bin refrence from crate [Issue 6](https://github.com/TimonPost/crossterm/issues/6) -- The terminal state will be set to its original state when process ends [issue7](https://github.com/TimonPost/crossterm/issues/7). -- Get position unix fixed [issue 8](https://github.com/TimonPost/crossterm/issues/8) - - -## TODO Features crossterm 0.3 -- Raw state implementation [Issue 5](https://github.com/TimonPost/crossterm/issues/5). -- Alternate screen implementation. -- Tests - -## Tested terminals - -- Windows Powershell - - Windows 10 (pro) -- Windows CMD - - Windows 10 (pro) -- Ubuntu Desktop Terminal - - Ubuntu 17.10 - - -The above terminals have been tested. Crossterm should works also for windows 7, 8 consoles and all ansi supportable consoles. -But these are yet to be tested. -If you have used this library for an terminal other than the above list without issues feel free to add it to the above list. - -## How it works - -Crossterm is using `WINAPI` for windows systems and `ANSI escape codes` for unix systems. Crossterm provides one base trait with can be implemented for a platform specific instance. For example, there is an implementation for windows (`WINAPI`) and unix(`ANSI`) for the `cursor module`. To call the platform specific implementation there is one module that rules them all. Thrue this module the client calls some action and the module will deside what to do based on the current platform. And it will execute that action. - -## Notice -This library is library is stable. There will not be changed mutch in the code design so do not worry to mutch. If there are any changes that affect previous versions I will describe what to change when upgrading crossterm to an newer version. - -## Todo - -- This library does not support any kind of raw terminal. When an terminal changes some core state of the terminal this state should be revered when the process ends from this library. Currently there are not made any changed to the core state of the terminal with this library. But when some fearures in the furure will be inplemented this will be the case. So there should come an kind of raw state for the terminal and reversable options to redo all the changes made to the core state when the process ends. More information can be found at this [thread](https://www.reddit.com/r/rust/comments/7tg6n2/looking_for_feedback_onmy_cross_platform_terminal/dtf4ilo/) - -- Handling mouse events -- Handling key events -- Tests - -## Contributing - -If you would like to contribute to crossterm, than please design the code as it is now. Each module contains the same structures so we can easely extend to multible platforms. As you study the code you will quiqly see what the architecture is. Maybe later there will be an documentation for how crossterm is design. - -## Versioning - -The current version is crossterm 0.1, every commit I merge the version go's up like 0.1.0 -> 0.1.1 -> 0.1.2. - -When new features arrives the packages will go up like 0.1 -> 0.2 -> 0.3 - -## Authors - -* **Timon Post** - *Project Owner & creator* - -## License - -This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details - - - diff --git a/docs/ReleaseNotesVersion 0.2.3.md b/docs/ReleaseNotesVersion 0.3.0.md similarity index 94% rename from docs/ReleaseNotesVersion 0.2.3.md rename to docs/ReleaseNotesVersion 0.3.0.md index f670590..807701b 100644 --- a/docs/ReleaseNotesVersion 0.2.3.md +++ b/docs/ReleaseNotesVersion 0.3.0.md @@ -1,9 +1,9 @@ This version has some braking changes check [upgrade manual](UPGRADE%20Manual.md) for more information about what is changed. -I think you should not switch to version `0.2.3` if you aren't going to use the AlternateScreen feature. +I think you should not switch to version `0.3.0` if you aren't going to use the AlternateScreen feature. Because you will have some work to get to the new version of crossterm depending on your situation. -But if this is the firsttime you are using this crate I highly recommend you to switch to the new version `0.2.3`. +But if this is the firsttime you are using this crate I highly recommend you to switch to the new version `0.3.0`. -Some Features crossterm 0.2.3 +Some Features crossterm 0.3.0 - Alternate Screen for windows and unix systems. - Raw screen for unix and windows systems [Issue 5](https://github.com/TimonPost/crossterm/issues/5).. - Hiding an showing the cursor. @@ -19,7 +19,7 @@ The alternate buffer is exactly the dimensions of the window, without any scroll For an example of this behavior, consider when vim is launched from bash. Vim uses the entirety of the screen to edit the file, then returning to bash leaves the original buffer unchanged. -I Highly recommend you to check the `examples/Crossterm 0.2.3/program_examples/first_depth_search` for seeing this in action. +I Highly recommend you to check the `examples/Crossterm 0.3.0/program_examples/first_depth_search` for seeing this in action. ## Raw screen This crate now supports raw screen for both windows and unix systems. @@ -43,11 +43,11 @@ With these modes you can easier design the terminal screen. ## Examples Added [examples](https://github.com/TimonPost/crossterm/tree/master/examples) for each version of the crossterm version. -Also added a folder with some [real life examples](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.2.3/program_examples). +Also added a folder with some [real life examples](https://github.com/TimonPost/crossterm/tree/master/examples/Crossterm%200.3.0/program_examples). ## Context -What is the `Context` all about? This `Context` has several reasons why it is introduced into `crossterm version 0.2.3`. +What is the `Context` all about? This `Context` has several reasons why it is introduced into `crossterm version 0.3.0`. These points are related to the features like `Alternatescreen` and managing the terminal state. - At first `Terminal state`: @@ -98,7 +98,7 @@ Because this looks a little odd I will provide a type withs will manage the `Con ### Alternate screen When you want to switch to alternate screen there are a couple of things to keep in mind for it to work correctly. -First off some code of how to switch to Alternate screen, for more info check the [alternate screen example](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.2.3/terminal/alternate_screen.rs). +First off some code of how to switch to Alternate screen, for more info check the [alternate screen example](https://github.com/TimonPost/crossterm/blob/master/examples/Crossterm%200.3.0/terminal/alternate_screen.rs). _Create alternate screen from `Context`_ diff --git a/docs/UpgradeManual.md b/docs/UpgradeManual.md index a0f13b1..ea45150 100644 --- a/docs/UpgradeManual.md +++ b/docs/UpgradeManual.md @@ -1,4 +1,4 @@ -## Upgrade crossterm 0.2.1 to 0.2.3 +## Upgrade crossterm 0.2.1 to 0.3.0 ***WARNING*** diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/.rustc_info.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/.rustc_info.json deleted file mode 100644 index f5c2080..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/.rustc_info.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc_fingerprint":6123038087129977241,"outputs":{"1464629490410732173":["___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\Timon\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\nwindows\n",""],"1617349019360157463":["___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\Timon\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\nwindows\n",""],"1164083562126845933":["rustc 1.27.0 (3eda71b00 2018-06-19)\nbinary: rustc\ncommit-hash: 3eda71b00ad48d7bf4eef4c443e7f611fd061418\ncommit-date: 2018-06-19\nhost: x86_64-pc-windows-msvc\nrelease: 1.27.0\nLLVM version: 6.0\n",""]}} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.cargo-lock b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.cargo-lock deleted file mode 100644 index e69de29..0000000 diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/dep-lib-crossterm-65633a43a0cf0f73 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/dep-lib-crossterm-65633a43a0cf0f73 deleted file mode 100644 index 3d15ca6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/dep-lib-crossterm-65633a43a0cf0f73 and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73 deleted file mode 100644 index 66c8219..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73 +++ /dev/null @@ -1 +0,0 @@ -aaab7bf736936fc6 \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73.json deleted file mode 100644 index e8dfef3..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/crossterm-65633a43a0cf0f73/lib-crossterm-65633a43a0cf0f73.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":505120086900794094,"features":"[]","target":1835671024820821591,"profile":456805134827828312,"path":6941115698812798500,"deps":[["winapi v0.3.5","winapi",1778169349195837668]],"local":[{"MtimeBased":[[1531429673,843790700],".fingerprint\\crossterm-65633a43a0cf0f73\\dep-lib-crossterm-65633a43a0cf0f73"]}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5 deleted file mode 100644 index 280c67b..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5 +++ /dev/null @@ -1 +0,0 @@ -713992eedb6c5eaa \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5.json deleted file mode 100644 index f73ca23..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/bin-first_depth_search-d547a13c2d7dd7e5.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":505120086900794094,"features":"[]","target":16187384185378585901,"profile":456805134827828312,"path":1036222786711178230,"deps":[["crossterm v0.2.0 (file:///C:/Users/Timon/Documents/Programming/rust/crossterm)","crossterm",14298809206214208426],["rand v0.4.2","rand",13520812317507890964]],"local":[{"MtimeBased":[[1531429705,728991500],".fingerprint\\first_depth_search-d547a13c2d7dd7e5\\dep-bin-first_depth_search-d547a13c2d7dd7e5"]}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/dep-bin-first_depth_search-d547a13c2d7dd7e5 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/dep-bin-first_depth_search-d547a13c2d7dd7e5 deleted file mode 100644 index 5f7f60c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/first_depth_search-d547a13c2d7dd7e5/dep-bin-first_depth_search-d547a13c2d7dd7e5 and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/dep-lib-rand-c278be3f57a6eab5 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/dep-lib-rand-c278be3f57a6eab5 deleted file mode 100644 index 24a1299..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/dep-lib-rand-c278be3f57a6eab5 and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5 b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5 deleted file mode 100644 index ef957b7..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5 +++ /dev/null @@ -1 +0,0 @@ -14afc89b2a93a3bb \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5.json deleted file mode 100644 index e1ed084..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/rand-c278be3f57a6eab5/lib-rand-c278be3f57a6eab5.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":505120086900794094,"features":"[\"default\", \"libc\", \"std\"]","target":11704435198914552709,"profile":7990393541957723157,"path":5997727651590227415,"deps":[["winapi v0.3.5","winapi",1778169349195837668]],"local":[{"Precalculated":"0.4.2"}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e deleted file mode 100644 index d1528e8..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e +++ /dev/null @@ -1 +0,0 @@ -7879172ce20d8954 \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e.json deleted file mode 100644 index f485cf0..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/build-script-build_script_build-40a9ec8ec96fc09e.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":505120086900794094,"features":"[\"consoleapi\", \"handleapi\", \"minwindef\", \"ntsecapi\", \"processenv\", \"profileapi\", \"winbase\", \"wincon\", \"winnt\", \"winuser\"]","target":13123923088509177768,"profile":7282077418741342047,"path":51131497022828661,"deps":[],"local":[{"Precalculated":"0.3.5"}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/dep-build-script-build_script_build-40a9ec8ec96fc09e b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/dep-build-script-build_script_build-40a9ec8ec96fc09e deleted file mode 100644 index 1b1b374..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-40a9ec8ec96fc09e/dep-build-script-build_script_build-40a9ec8ec96fc09e and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build deleted file mode 100644 index efe9e7a..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build +++ /dev/null @@ -1 +0,0 @@ -f764d1bd19ed4744 \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build.json deleted file mode 100644 index 7f5fdfa..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-82ad602439f8f31a/build.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"MtimeBased":[[1531418826,509080200],"build\\winapi-82ad602439f8f31a\\output"]},{"EnvBased":["WINAPI_NO_BUNDLED_LIBRARIES",null]},{"EnvBased":["WINAPI_STATIC_NOBUNDLE",null]}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/dep-lib-winapi-a7fc1f06729e06bc b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/dep-lib-winapi-a7fc1f06729e06bc deleted file mode 100644 index e96b77e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/dep-lib-winapi-a7fc1f06729e06bc and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc deleted file mode 100644 index 29d69ee..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc +++ /dev/null @@ -1 +0,0 @@ -e4304e199a53ad18 \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc.json b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc.json deleted file mode 100644 index bdcc286..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/.fingerprint/winapi-a7fc1f06729e06bc/lib-winapi-a7fc1f06729e06bc.json +++ /dev/null @@ -1 +0,0 @@ -{"rustc":505120086900794094,"features":"[\"consoleapi\", \"handleapi\", \"minwindef\", \"ntsecapi\", \"processenv\", \"profileapi\", \"winbase\", \"wincon\", \"winnt\", \"winuser\"]","target":12058900896200619676,"profile":7990393541957723157,"path":18063606977680687745,"deps":[],"local":[{"Precalculated":"0.3.5"}],"rustflags":[],"edition":"Edition2015"} \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build-script-build.exe b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build-script-build.exe deleted file mode 100644 index f1b7748..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build-script-build.exe and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.d deleted file mode 100644 index 01281c5..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.d +++ /dev/null @@ -1,5 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\build\winapi-40a9ec8ec96fc09e\build_script_build-40a9ec8ec96fc09e.exe: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\build.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\build\winapi-40a9ec8ec96fc09e\build_script_build-40a9ec8ec96fc09e.d: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\build.rs - -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\build.rs: diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.exe b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.exe deleted file mode 100644 index f1b7748..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.exe and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.pdb b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.pdb deleted file mode 100644 index 2eb393a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-40a9ec8ec96fc09e/build_script_build-40a9ec8ec96fc09e.pdb and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/output b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/output deleted file mode 100644 index 64f4518..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/output +++ /dev/null @@ -1,35 +0,0 @@ -cargo:rerun-if-changed=build.rs -cargo:rerun-if-env-changed=WINAPI_NO_BUNDLED_LIBRARIES -cargo:rerun-if-env-changed=WINAPI_STATIC_NOBUNDLE -cargo:rustc-cfg=feature="vadefs" -cargo:rustc-cfg=feature="libloaderapi" -cargo:rustc-cfg=feature="vcruntime" -cargo:rustc-cfg=feature="winreg" -cargo:rustc-cfg=feature="wincred" -cargo:rustc-cfg=feature="guiddef" -cargo:rustc-cfg=feature="minwinbase" -cargo:rustc-cfg=feature="ktmtypes" -cargo:rustc-cfg=feature="ntstatus" -cargo:rustc-cfg=feature="subauth" -cargo:rustc-cfg=feature="wingdi" -cargo:rustc-cfg=feature="sspi" -cargo:rustc-cfg=feature="excpt" -cargo:rustc-cfg=feature="limits" -cargo:rustc-cfg=feature="fileapi" -cargo:rustc-cfg=feature="processthreadsapi" -cargo:rustc-cfg=feature="cfgmgr32" -cargo:rustc-cfg=feature="windef" -cargo:rustc-cfg=feature="basetsd" -cargo:rustc-cfg=feature="ntdef" -cargo:rustc-cfg=feature="cfg" -cargo:rustc-cfg=feature="lsalookup" -cargo:rustc-link-lib=dylib=advapi32 -cargo:rustc-link-lib=dylib=credui -cargo:rustc-link-lib=dylib=gdi32 -cargo:rustc-link-lib=dylib=kernel32 -cargo:rustc-link-lib=dylib=msimg32 -cargo:rustc-link-lib=dylib=opengl32 -cargo:rustc-link-lib=dylib=secur32 -cargo:rustc-link-lib=dylib=setupapi -cargo:rustc-link-lib=dylib=user32 -cargo:rustc-link-lib=dylib=winspool diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/root-output b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/root-output deleted file mode 100644 index 38a8eb2..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/root-output +++ /dev/null @@ -1 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug \ No newline at end of file diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/stderr b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/build/winapi-82ad602439f8f31a/stderr deleted file mode 100644 index e69de29..0000000 diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/crossterm-65633a43a0cf0f73.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/crossterm-65633a43a0cf0f73.d deleted file mode 100644 index 580b499..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/crossterm-65633a43a0cf0f73.d +++ /dev/null @@ -1,45 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\libcrossterm-65633a43a0cf0f73.rlib: C:\Users\Timon\Documents\Programming\rust\crossterm\src/lib.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\macros.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\crossterm.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\functions.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\traits.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\screen.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\raw.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\command_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\win_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\shared_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\context.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\state_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\ansi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\winapi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\ansi_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\win_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\ansi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\winapi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\objectstyle.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\styledobject.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\ansi_terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\winapi_terminal.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\crossterm-65633a43a0cf0f73.d: C:\Users\Timon\Documents\Programming\rust\crossterm\src/lib.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\macros.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\crossterm.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\functions.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\traits.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\screen.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\raw.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\command_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\win_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\shared_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\context.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\state_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\ansi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\winapi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\ansi_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\win_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\ansi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\winapi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\objectstyle.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\styledobject.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\ansi_terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\winapi_terminal.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\src/lib.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\macros.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\crossterm.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\functions.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\traits.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\screen.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\raw.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\ansi_support.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\cursor.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\kernel.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\terminal.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\command_manager.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\win_commands.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\shared_commands.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\context.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\state_manager.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\cursor.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\ansi_cursor.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\winapi_cursor.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\manager.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\ansi_manager.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\win_manager.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\color.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\ansi_color.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\winapi_color.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\objectstyle.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\styledobject.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\mod.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\terminal.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\ansi_terminal.rs: -C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\winapi_terminal.rs: diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.d deleted file mode 100644 index 296137a..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.d +++ /dev/null @@ -1,9 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\first_depth_search-d547a13c2d7dd7e5.exe: src\main.rs src\map.rs src\algorithm.rs src\messages.rs src\variables.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\first_depth_search-d547a13c2d7dd7e5.d: src\main.rs src\map.rs src\algorithm.rs src\messages.rs src\variables.rs - -src\main.rs: -src\map.rs: -src\algorithm.rs: -src\messages.rs: -src\variables.rs: diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.exe b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.exe deleted file mode 100644 index cb878fe..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.exe and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.pdb b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.pdb deleted file mode 100644 index c71981e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-d547a13c2d7dd7e5.pdb and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libcrossterm-65633a43a0cf0f73.rlib b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libcrossterm-65633a43a0cf0f73.rlib deleted file mode 100644 index b1fdc53..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libcrossterm-65633a43a0cf0f73.rlib and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/librand-c278be3f57a6eab5.rlib b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/librand-c278be3f57a6eab5.rlib deleted file mode 100644 index 3c4af19..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/librand-c278be3f57a6eab5.rlib and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libwinapi-a7fc1f06729e06bc.rlib b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libwinapi-a7fc1f06729e06bc.rlib deleted file mode 100644 index 4e6c6ff..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libwinapi-a7fc1f06729e06bc.rlib and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/rand-c278be3f57a6eab5.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/rand-c278be3f57a6eab5.d deleted file mode 100644 index 73a7145..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/rand-c278be3f57a6eab5.d +++ /dev/null @@ -1,22 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\librand-c278be3f57a6eab5.rlib: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\range.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\gamma.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\normal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\exponential.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\ziggurat_tables.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\jitter.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\os.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\read.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\reseeding.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\seq.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\rand_impls.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\chacha.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac64.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\xorshift.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\rand-c278be3f57a6eab5.d: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\range.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\gamma.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\normal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\exponential.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\ziggurat_tables.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\jitter.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\os.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\read.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\reseeding.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\seq.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\rand_impls.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\chacha.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac64.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\xorshift.rs - -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\lib.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\range.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\gamma.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\normal.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\exponential.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\distributions\ziggurat_tables.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\jitter.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\os.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\read.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\reseeding.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\seq.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\rand_impls.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\chacha.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\isaac64.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\rand-0.4.2\src\prng\xorshift.rs: diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/winapi-a7fc1f06729e06bc.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/winapi-a7fc1f06729e06bc.d deleted file mode 100644 index f302d24..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/winapi-a7fc1f06729e06bc.d +++ /dev/null @@ -1,44 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\libwinapi-a7fc1f06729e06bc.rlib: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\macros.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\basetsd.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\cfg.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\guiddef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ktmtypes.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\minwindef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntdef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntstatus.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\sspi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\windef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\gl\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\cfgmgr32.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\consoleapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\fileapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\handleapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\libloaderapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\lsalookup.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\minwinbase.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\ntsecapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processenv.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processthreadsapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\profileapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\sspi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\subauth.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winbase.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincon.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincred.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wingdi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winnt.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winreg.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winuser.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\excpt.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\limits.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vadefs.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vcruntime.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\winrt\mod.rs - -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug\deps\winapi-a7fc1f06729e06bc.d: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\macros.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\basetsd.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\cfg.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\guiddef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ktmtypes.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\minwindef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntdef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntstatus.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\sspi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\windef.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\gl\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\cfgmgr32.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\consoleapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\fileapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\handleapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\libloaderapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\lsalookup.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\minwinbase.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\ntsecapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processenv.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processthreadsapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\profileapi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\sspi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\subauth.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winbase.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincon.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincred.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wingdi.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winnt.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winreg.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winuser.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\excpt.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\limits.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vadefs.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vcruntime.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\winrt\mod.rs - -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\lib.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\macros.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\basetsd.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\cfg.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\guiddef.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ktmtypes.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\minwindef.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntdef.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\ntstatus.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\sspi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\shared\windef.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\gl\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\cfgmgr32.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\consoleapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\fileapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\handleapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\libloaderapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\lsalookup.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\minwinbase.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\ntsecapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processenv.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\processthreadsapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\profileapi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\sspi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\subauth.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winbase.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincon.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wincred.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\wingdi.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winnt.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winreg.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\um\winuser.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\mod.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\excpt.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\limits.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vadefs.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\vc\vcruntime.rs: -C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\src\winrt\mod.rs: diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.d b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.d deleted file mode 100644 index 09e69d0..0000000 --- a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.d +++ /dev/null @@ -1 +0,0 @@ -C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\target\debug\first_depth_search.pdb: C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\src\algorithm.rs C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\src\main.rs C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\src\map.rs C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\src\messages.rs C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm\ 0.2.3\program_examples\first_depth_search\src\variables.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\ansi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\cursor\winapi_cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src/lib.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\ansi_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\manager\win_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\crossterm.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\functions.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\macros.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\raw.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\screen.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\shared\traits.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\command_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\shared_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\commands\win_commands.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\context.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\state\state_manager.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\ansi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\color\winapi_color.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\objectstyle.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\style\styles\styledobject.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\ansi_terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\mod.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\terminal.rs C:\Users\Timon\Documents\Programming\rust\crossterm\src\terminal\winapi_terminal.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.exe b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.exe deleted file mode 100644 index cb878fe..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.exe and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.pdb b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.pdb deleted file mode 100644 index c71981e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search.pdb and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.bc.z deleted file mode 100644 index 4d26dd1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.o deleted file mode 100644 index e5ff734..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/13tprap6axy2fph1.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.bc.z deleted file mode 100644 index 1746555..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.o deleted file mode 100644 index c6105f2..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16i0u6jlhoj1fwbo.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.bc.z deleted file mode 100644 index 3faad4b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.o deleted file mode 100644 index 647f8b0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/16u6js6g0l3k1ic6.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.bc.z deleted file mode 100644 index b72cfdf..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.o deleted file mode 100644 index a6b180f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/17erb31xn70viq4b.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.bc.z deleted file mode 100644 index 5e6c181..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.o deleted file mode 100644 index 168099a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/181cuta0v63atwcm.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.bc.z deleted file mode 100644 index a8a7e21..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.o deleted file mode 100644 index b42e75e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1dqvxks6k2bzkxe.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.bc.z deleted file mode 100644 index f5f4022..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.o deleted file mode 100644 index 7fbd3ef..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1e698527iprj2v8f.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.bc.z deleted file mode 100644 index ded1e71..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.o deleted file mode 100644 index 075360c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1g3lwilq9cwv41qg.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.bc.z deleted file mode 100644 index c8b07ff..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.o deleted file mode 100644 index 1e4d55b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1idjnqb23rob2tvo.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.bc.z deleted file mode 100644 index 890db79..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.o deleted file mode 100644 index 9dded5e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1im38lueib99jsk0.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.bc.z deleted file mode 100644 index 0df7ef6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.o deleted file mode 100644 index f4dc7f3..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1jnlhyxj59jycbjv.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.bc.z deleted file mode 100644 index a1967ca..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.o deleted file mode 100644 index 94be46b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1kmki6pxzfjx2xe.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.bc.z deleted file mode 100644 index 175e411..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.o deleted file mode 100644 index 6ddba62..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1la4tje1itocvqou.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.bc.z deleted file mode 100644 index 91b361e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.o deleted file mode 100644 index 462d7f4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1lelgpelve5cjj1b.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.bc.z deleted file mode 100644 index 4049e31..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.o deleted file mode 100644 index f9095bc..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1mvmz58owquyropc.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.bc.z deleted file mode 100644 index 151ef23..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.o deleted file mode 100644 index be70e6a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1o6b1la7g4jnv39b.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.bc.z deleted file mode 100644 index 1057320..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.o deleted file mode 100644 index b18e43a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1pyg38ew8eq184bu.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.bc.z deleted file mode 100644 index 1124895..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.o deleted file mode 100644 index 08665ba..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1q8ffos2d96smbjs.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.bc.z deleted file mode 100644 index 073907d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.o deleted file mode 100644 index 53c8f57..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1vut2eft6nlujjxr.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.bc.z deleted file mode 100644 index 9afeede..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.o deleted file mode 100644 index 15b5a1c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1y16o1qfye96o7m0.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.bc.z deleted file mode 100644 index dba722f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.o deleted file mode 100644 index 16174c4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zeawhkbeobww1zn.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.bc.z deleted file mode 100644 index 4ba8363..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.o deleted file mode 100644 index 88b94b0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/1zwd8n7bcl3vhvvh.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.bc.z deleted file mode 100644 index aab499d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.o deleted file mode 100644 index 4e126ba..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/20yz0abzwxh3fjn7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.bc.z deleted file mode 100644 index 207d8a1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.o deleted file mode 100644 index 8111d0e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/225ddtul7dxk4spr.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.bc.z deleted file mode 100644 index 1691307..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.o deleted file mode 100644 index 268117b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/23tqyymcb18u96mb.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.bc.z deleted file mode 100644 index eb1e4d7..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.o deleted file mode 100644 index b374dd7..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/25gbt39o6swwbqw4.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.bc.z deleted file mode 100644 index 6589632..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.o deleted file mode 100644 index c135489..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/26b9icpd1rxg15bl.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.bc.z deleted file mode 100644 index 1b94f91..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.o deleted file mode 100644 index 0adb3e6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/28m6b5dkfoixx5aa.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.bc.z deleted file mode 100644 index b0d5c27..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.o deleted file mode 100644 index 57dfa21..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2i7eodbtd59z3zjl.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.bc.z deleted file mode 100644 index 46e0a4a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.o deleted file mode 100644 index 24574a6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2jqywn86b2gsqohu.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.bc.z deleted file mode 100644 index 5d6e53b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.o deleted file mode 100644 index 00cc1bd..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2lyh15q6cjwzy18c.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.bc.z deleted file mode 100644 index ce2895c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.o deleted file mode 100644 index 22e011d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2pz6t7liqph9quwo.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.bc.z deleted file mode 100644 index 704a84d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.o deleted file mode 100644 index d36ad9a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2q5257pdh5222n7q.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.bc.z deleted file mode 100644 index 7c981d5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.o deleted file mode 100644 index 4747ea5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2qhkzqx5zqexj20y.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.bc.z deleted file mode 100644 index 4d382e9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.o deleted file mode 100644 index 25ce53e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2r82puffnvvb8iic.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.bc.z deleted file mode 100644 index b8956a0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.o deleted file mode 100644 index 1ed636f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2tz4y48d51occu5q.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.bc.z deleted file mode 100644 index 4d38452..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.o deleted file mode 100644 index 61359c1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2ujx3sbmswjw52yh.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.bc.z deleted file mode 100644 index 14a23c1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.o deleted file mode 100644 index 616710e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2w6xsa2hbi53xhak.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.bc.z deleted file mode 100644 index 7789d60..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.o deleted file mode 100644 index d5e487a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/2yjgu2y49f6dp64j.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.bc.z deleted file mode 100644 index a19afae..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.o deleted file mode 100644 index 46c46f4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3171x0bwu82dptu7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.bc.z deleted file mode 100644 index 66f5bb3..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.o deleted file mode 100644 index 636681d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/31xvavktzzmtzg13.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.bc.z deleted file mode 100644 index e9874c6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.o deleted file mode 100644 index d1922dc..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38le3cr9pk2ij99x.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.bc.z deleted file mode 100644 index aefc797..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.o deleted file mode 100644 index eb8ceae..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/38ps4pa181wsnsy9.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.bc.z deleted file mode 100644 index f5e9635..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.o deleted file mode 100644 index dc0f627..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ayaeypdcro9d6yk.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.bc.z deleted file mode 100644 index 8bee17d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.o deleted file mode 100644 index c8bad4c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3emkq4pcbtey8152.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.bc.z deleted file mode 100644 index f04aad8..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.o deleted file mode 100644 index 1438916..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ey2fuirvapj2it7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.bc.z deleted file mode 100644 index 0926b4a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.o deleted file mode 100644 index 619063f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3g94tobrpgum5dk6.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.bc.z deleted file mode 100644 index 6a512e4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.o deleted file mode 100644 index 84fd6dc..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ik0x0hz6l66cx38.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.bc.z deleted file mode 100644 index 57ac82e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.o deleted file mode 100644 index 377fe4a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3ldk0i2zxftngav8.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.bc.z deleted file mode 100644 index b5b493d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.o deleted file mode 100644 index e04a8c5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3oqznv5oym7l3m4e.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.bc.z deleted file mode 100644 index 5d6c016..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.o deleted file mode 100644 index 004196d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/3wta9ctgdrpkmlpr.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.bc.z deleted file mode 100644 index f396bbf..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.o deleted file mode 100644 index 4fc6cd3..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/41sd1w3yketxogqs.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.bc.z deleted file mode 100644 index 312f3c1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.o deleted file mode 100644 index be4a78c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/42xfdk6gm7yqmzvg.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.bc.z deleted file mode 100644 index e2007a5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.o deleted file mode 100644 index b354b79..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/436dotimmrgzkwfa.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.bc.z deleted file mode 100644 index 734d56f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.o deleted file mode 100644 index 4610257..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/43v6g0y2xsxoggnt.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.bc.z deleted file mode 100644 index 513b555..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.o deleted file mode 100644 index 1563015..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/45pc7c65foh9i35f.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.bc.z deleted file mode 100644 index af76a03..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.o deleted file mode 100644 index 5fb8e3c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/47kb80rpg37n2ote.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.bc.z deleted file mode 100644 index 98edcea..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.o deleted file mode 100644 index 2b7b074..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/48721dc4k5qxei0u.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.bc.z deleted file mode 100644 index 42be386..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.o deleted file mode 100644 index 12d29f9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49a7n47po4ttqjl7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.bc.z deleted file mode 100644 index 4349da1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.o deleted file mode 100644 index bc16373..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49lx1q7cxvpykyv0.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.bc.z deleted file mode 100644 index 6eb3962..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.o deleted file mode 100644 index 931b7c0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/49qmpuk8w1opmi5q.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.bc.z deleted file mode 100644 index c98f0d8..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.o deleted file mode 100644 index 4cd42f9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4b8ptp1vn215jmoe.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.bc.z deleted file mode 100644 index 1dd375e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.o deleted file mode 100644 index 40c4b47..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bggn7q7s42t3ahg.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.bc.z deleted file mode 100644 index 4b0fa91..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.o deleted file mode 100644 index f6cba72..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4bjn73m2gshf60v8.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.bc.z deleted file mode 100644 index dc4c2fb..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.o deleted file mode 100644 index 7ce60e1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4brwxiorhmgsb6oc.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.bc.z deleted file mode 100644 index 72c0740..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.o deleted file mode 100644 index 6d58561..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4cxyqmsl2ros1gyv.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.bc.z deleted file mode 100644 index debe618..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.o deleted file mode 100644 index 0676829..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4eaiea9zt8ealj1r.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.bc.z deleted file mode 100644 index 7caf69a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.o deleted file mode 100644 index 811cbbf..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4g47d2sx6m33abop.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.bc.z deleted file mode 100644 index c0502f0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.o deleted file mode 100644 index ef66e7a..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4hixfs0v2n1lvr33.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.bc.z deleted file mode 100644 index ddc16c7..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.o deleted file mode 100644 index 0e71e3d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4o152zi3ayro3ygt.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.bc.z deleted file mode 100644 index 5f04453..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.o deleted file mode 100644 index 86d96a7..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4r23sjj72r90nor6.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.bc.z deleted file mode 100644 index 3cf6ca9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.o deleted file mode 100644 index 6fb1c6d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sdt5uofoy0vrzjl.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.bc.z deleted file mode 100644 index dd7cc44..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.o deleted file mode 100644 index f955fa4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4sw9hz7i7fiueihz.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.bc.z deleted file mode 100644 index ebd6025..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.o deleted file mode 100644 index 295923d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4uabefc56mlk4yon.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.bc.z deleted file mode 100644 index 4c81d4f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.o deleted file mode 100644 index a252d95..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xq48u46a1pwiqn7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.bc.z deleted file mode 100644 index a3a5703..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.o deleted file mode 100644 index 95678ef..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4xuhwz5yy6q4gvgg.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.bc.z deleted file mode 100644 index 6d9e42d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.o deleted file mode 100644 index 12d7951..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4yh8x2b62dcih00t.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.bc.z deleted file mode 100644 index 7ee1df9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.o deleted file mode 100644 index 421e9d9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/4ypvbwho0bu5tnww.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.bc.z deleted file mode 100644 index 9c5f13d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.o deleted file mode 100644 index 74b539c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/51s1w397y42gpez1.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.bc.z deleted file mode 100644 index c641642..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.o deleted file mode 100644 index f746f31..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/53y8zwkrh9s36vgc.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.bc.z deleted file mode 100644 index aa3acab..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.o deleted file mode 100644 index 6dd7a66..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5544xgl7axh7p8nz.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.bc.z deleted file mode 100644 index bc5f212..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.o deleted file mode 100644 index d1cf608..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/572bgozz9kcwe4zq.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.bc.z deleted file mode 100644 index 296d8bd..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.o deleted file mode 100644 index 5a5cb47..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/57k06xfugllsc526.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.bc.z deleted file mode 100644 index 841e8eb..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.o deleted file mode 100644 index 7138867..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5a73v0m30absukhd.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.bc.z deleted file mode 100644 index fcc8179..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.o deleted file mode 100644 index 36eb55d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5b9pfgjsd97fy2a3.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.bc.z deleted file mode 100644 index 5cf6741..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.o deleted file mode 100644 index a254356..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5beqqbexwb143v6a.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.bc.z deleted file mode 100644 index b82b262..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.o deleted file mode 100644 index b23b536..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5frs3mx5dzjbj7u6.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.bc.z deleted file mode 100644 index 31a8e39..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.o deleted file mode 100644 index 6b76201..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/5gstmer6jle7s6lw.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.bc.z deleted file mode 100644 index 5f52ef5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.o deleted file mode 100644 index aae58d5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/63mmpc50mjcb0lb.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.bc.z deleted file mode 100644 index 0f27409..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.o deleted file mode 100644 index 806c490..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/7p53qlves2rwxx0.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.bc.z deleted file mode 100644 index 127aea1..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.o deleted file mode 100644 index db5c345..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/81jpvh8cn5k8ng8.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.bc.z deleted file mode 100644 index 588e67b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.o deleted file mode 100644 index 243c677..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/8xzrsc1ux72v29j.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.bc.z deleted file mode 100644 index 1a8a664..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.o deleted file mode 100644 index f1c895c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/98g0d9x8aw3akpe.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.bc.z deleted file mode 100644 index 8a198fb..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.o deleted file mode 100644 index 3b6893b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/9elsx31vb4it187.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.bc.z deleted file mode 100644 index 3404ce6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.o deleted file mode 100644 index e29419b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/c6lbtaiefvx3wya.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/dep-graph.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/dep-graph.bin deleted file mode 100644 index fb3961d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/dep-graph.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.bc.z deleted file mode 100644 index efc5396..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.o deleted file mode 100644 index affbf08..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/e19kx9t7xhzajfl.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.bc.z deleted file mode 100644 index 4f59839..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.o deleted file mode 100644 index b3f59c9..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/gon14xphovlcp6p.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.bc.z deleted file mode 100644 index f4554b0..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.o deleted file mode 100644 index 61fc385..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/icg978apoib7qls.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.bc.z deleted file mode 100644 index 809d01b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.o deleted file mode 100644 index 0f7fc8b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/mb501chi8fnqgmm.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.bc.z deleted file mode 100644 index ed27886..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.o deleted file mode 100644 index 53179b5..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/pqmjx25qpxkduz7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/query-cache.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/query-cache.bin deleted file mode 100644 index 7297c9e..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/query-cache.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.bc.z deleted file mode 100644 index 3551475..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.o deleted file mode 100644 index bd6b756..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/sjcqfz2ncn1dupz.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.bc.z deleted file mode 100644 index 5ad2a51..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.o deleted file mode 100644 index 477fab6..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/w0jv91bi96sjrx4.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/work-products.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/work-products.bin deleted file mode 100644 index ae5503c..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/work-products.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.bc.z deleted file mode 100644 index ea0a51f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.o deleted file mode 100644 index 575d853..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/y08g5q2x813c4wx.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.bc.z b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.bc.z deleted file mode 100644 index 82ed14b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.bc.z and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.o deleted file mode 100644 index 90ff251..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq-1o8ixb5eoc1lf/z9ox7biyn1otfln.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq.lock b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/crossterm-1yj7wf4dz8rnp/s-f2uh2uk217-4ka9zq.lock deleted file mode 100644 index e69de29..0000000 diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/10ygozpgsu0ud2lu.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/10ygozpgsu0ud2lu.o deleted file mode 100644 index 587a060..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/10ygozpgsu0ud2lu.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/16u6js6g0l3k1ic6.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/16u6js6g0l3k1ic6.o deleted file mode 100644 index 902cd28..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/16u6js6g0l3k1ic6.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/181cuta0v63atwcm.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/181cuta0v63atwcm.o deleted file mode 100644 index 33c07ed..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/181cuta0v63atwcm.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1bq5qje1qm23749i.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1bq5qje1qm23749i.o deleted file mode 100644 index ac36347..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1bq5qje1qm23749i.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1y16o1qfye96o7m0.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1y16o1qfye96o7m0.o deleted file mode 100644 index ce50652..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/1y16o1qfye96o7m0.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3rngp6bm2u2q5z0y.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3rngp6bm2u2q5z0y.o deleted file mode 100644 index 37bd9aa..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3rngp6bm2u2q5z0y.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3wta9ctgdrpkmlpr.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3wta9ctgdrpkmlpr.o deleted file mode 100644 index fc4b361..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/3wta9ctgdrpkmlpr.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4oc10dk278mpk1vy.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4oc10dk278mpk1vy.o deleted file mode 100644 index e9705d4..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4oc10dk278mpk1vy.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4x335n22m9teucop.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4x335n22m9teucop.o deleted file mode 100644 index a88c96b..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4x335n22m9teucop.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4xq48u46a1pwiqn7.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4xq48u46a1pwiqn7.o deleted file mode 100644 index 97eb63d..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/4xq48u46a1pwiqn7.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/9elsx31vb4it187.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/9elsx31vb4it187.o deleted file mode 100644 index 6df1f98..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/9elsx31vb4it187.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/c6lbtaiefvx3wya.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/c6lbtaiefvx3wya.o deleted file mode 100644 index 8cb1c96..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/c6lbtaiefvx3wya.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/dep-graph.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/dep-graph.bin deleted file mode 100644 index b273659..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/dep-graph.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/query-cache.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/query-cache.bin deleted file mode 100644 index c7e5d54..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/query-cache.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/work-products.bin b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/work-products.bin deleted file mode 100644 index 12e310f..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/work-products.bin and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/y08g5q2x813c4wx.o b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/y08g5q2x813c4wx.o deleted file mode 100644 index 1cfef38..0000000 Binary files a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s-972nw2zks7c/y08g5q2x813c4wx.o and /dev/null differ diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s.lock b/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/incremental/first_depth_search-kmk4glhn9wf3/s-f2uh3e2a43-wnda8s.lock deleted file mode 100644 index e69de29..0000000 diff --git a/examples/Crossterm 0.2.3/README.md b/examples/Crossterm 0.3.0/README.md similarity index 70% rename from examples/Crossterm 0.2.3/README.md rename to examples/Crossterm 0.3.0/README.md index 64bdbe9..2e1d360 100644 --- a/examples/Crossterm 0.2.3/README.md +++ b/examples/Crossterm 0.3.0/README.md @@ -1,4 +1,4 @@ -This folder contains examples for version 0.2.3. Here you will find examples of all the functionalities crossterm offers. +This folder contains examples for version 0.3.0 Here you will find examples of all the functionalities crossterm offers. It has 4 modules: - color (this is about all the styling of the terminal) diff --git a/examples/Crossterm 0.2.3/bin.rs b/examples/Crossterm 0.3.0/bin.rs similarity index 100% rename from examples/Crossterm 0.2.3/bin.rs rename to examples/Crossterm 0.3.0/bin.rs diff --git a/examples/Crossterm 0.2.3/color/mod.rs b/examples/Crossterm 0.3.0/color/mod.rs similarity index 100% rename from examples/Crossterm 0.2.3/color/mod.rs rename to examples/Crossterm 0.3.0/color/mod.rs diff --git a/examples/Crossterm 0.2.3/crossterm_type/mod.rs b/examples/Crossterm 0.3.0/crossterm_type/mod.rs similarity index 100% rename from examples/Crossterm 0.2.3/crossterm_type/mod.rs rename to examples/Crossterm 0.3.0/crossterm_type/mod.rs diff --git a/examples/Crossterm 0.2.3/cursor/mod.rs b/examples/Crossterm 0.3.0/cursor/mod.rs similarity index 100% rename from examples/Crossterm 0.2.3/cursor/mod.rs rename to examples/Crossterm 0.3.0/cursor/mod.rs diff --git a/examples/Crossterm 0.2.3/program_examples/README.md b/examples/Crossterm 0.3.0/program_examples/README.md similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/README.md rename to examples/Crossterm 0.3.0/program_examples/README.md diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/Cargo.toml b/examples/Crossterm 0.3.0/program_examples/first_depth_search/Cargo.toml similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/Cargo.toml rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/Cargo.toml diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/algorithm.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/algorithm.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/algorithm.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/algorithm.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/main.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/main.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/main.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/main.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/map.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/map.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/map.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/map.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/messages.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/messages.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/messages.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/messages.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/mod.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/mod.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/mod.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/mod.rs diff --git a/examples/Crossterm 0.2.3/program_examples/first_depth_search/src/variables.rs b/examples/Crossterm 0.3.0/program_examples/first_depth_search/src/variables.rs similarity index 100% rename from examples/Crossterm 0.2.3/program_examples/first_depth_search/src/variables.rs rename to examples/Crossterm 0.3.0/program_examples/first_depth_search/src/variables.rs diff --git a/examples/Crossterm 0.2.3/terminal/alternate_screen.rs b/examples/Crossterm 0.3.0/terminal/alternate_screen.rs similarity index 100% rename from examples/Crossterm 0.2.3/terminal/alternate_screen.rs rename to examples/Crossterm 0.3.0/terminal/alternate_screen.rs diff --git a/examples/Crossterm 0.2.3/terminal/mod.rs b/examples/Crossterm 0.3.0/terminal/mod.rs similarity index 100% rename from examples/Crossterm 0.2.3/terminal/mod.rs rename to examples/Crossterm 0.3.0/terminal/mod.rs diff --git a/examples/Crossterm 0.2.3/terminal/raw_mode.rs b/examples/Crossterm 0.3.0/terminal/raw_mode.rs similarity index 100% rename from examples/Crossterm 0.2.3/terminal/raw_mode.rs rename to examples/Crossterm 0.3.0/terminal/raw_mode.rs diff --git a/examples/Crossterm 0.2.3/terminal/terminal.rs b/examples/Crossterm 0.3.0/terminal/terminal.rs similarity index 100% rename from examples/Crossterm 0.2.3/terminal/terminal.rs rename to examples/Crossterm 0.3.0/terminal/terminal.rs diff --git a/src/shared/crossterm.rs b/src/shared/crossterm.rs index 4f0a350..8a27201 100644 --- a/src/shared/crossterm.rs +++ b/src/shared/crossterm.rs @@ -1,5 +1,5 @@ //! This module provides easy access to the functionalities of crossterm. -//! since `crossterm version 0.2.3` an `Context` type is introduced (check that documentation for more info why this type is introduced). +//! since `crossterm version 0.3.0` an `Context` type is introduced (check that documentation for more info why this type is introduced). //! //! You have to provide this `Context` to the modules: `cursor::cursor(), color::color(), terminal::terminal()`. //! @@ -39,7 +39,7 @@ use std::convert::From; /// You can better use `Crossterm` for accessing these modules. /// `Crossterm` handles the Context internally so jo do not have to bother about it, for example: /// -/// Check `/examples/Crossterm 0.2.3/program_examples/first_depth_search` in the library for more specific examples. +/// Check `/examples/Crossterm 0.3.0/program_examples/first_depth_search` in the library for more specific examples. /// /// let crossterm = Crossterm::new(); /// let color = crossterm.color(); diff --git a/src/state/context.rs b/src/state/context.rs index 73cfe5e..8957d7f 100644 --- a/src/state/context.rs +++ b/src/state/context.rs @@ -1,4 +1,4 @@ -//! What is the `Context` all about? This `Context` has several reasons why it is introduced into `crossterm version 0.2.3`. +//! What is the `Context` all about? This `Context` has several reasons why it is introduced into `crossterm version 0.3.0`. //! These points are related to the features like `Alternatescreen` and managing the terminal state. //! //! - At first `Terminal state`: