Added release notes, docs, readme changed almost done for release 0.2.3

This commit is contained in:
TimonPost 2018-07-12 23:36:30 +02:00
parent dd7b191c23
commit 787b4aa1b3
616 changed files with 1406 additions and 1271 deletions

View File

@ -1,5 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,7 +0,0 @@
<component name="ProjectDictionaryState">
<dictionary name="Timon">
<words>
<w>swhitching</w>
</words>
</dictionary>
</component>

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CargoProjects">
<cargoProject FILE="$PROJECT_DIR$/Cargo.toml" />
</component>
<component name="RustProjectSettings">
<option name="toolchainHomeDirectory" value="$USER_HOME$/.cargo/bin" />
</component>
</project>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/crossterm.iml" filepath="$PROJECT_DIR$/.idea/crossterm.iml" />
</modules>
</component>
</project>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

File diff suppressed because it is too large Load Diff

298
README.md
View File

@ -1,93 +1,245 @@
# This is the development branch do not use this in production. This code can be broken and contains code that could not function correctly. [![Latest Version](https://img.shields.io/crates/v/crossterm.svg)](https://crates.io/crates/crossterm) |
[Documentation](link_to_docs) |
[Examples](link_to_examples) |
[Changelog](link_to_change_log) |
[Release Nodes](link_to_release_nodes)
Things where I am working on now: 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.
I have implemented the alternate and raw screen features for Unix systems. Now I am trying to get this also to work for windows with WINAPI. 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 whatever action you want and underwater it will check what to do based on the current platform.
In the new version you must provide the Context type to the function calls `cursor(), color(), terminal()`. This type is used by Crossterm for managing the state of the terminal and for futures like `AlternateScreen` and `Rawscreen`. This crate supports all unix terminals and windows terminals down to windows XP (not not all terminals are tested see 'tested terminals' for more info)
Like described above the next version will have api braking changes. Why I needed to do that is essential for the functioning of the above features. ## Getting Started
- At first `Terminal state`: This documentation is only for Crossterm version `0.2.3` check the [Upgrade Manual](link) for more info.
Also the [examples](link) directory contains examples for each version of Crossterm.
Because this is a terminal manipulating library there will be made changes to terminal when running an process. If you stop the process you want the terminal back in its original state. Therefore, I need to track the changes made to the terminal. This is done in the `Context` struct so that they can be undone when the process ends. Add the Crossterm package to your `Cargo.toml` file.
```
[dependencies]
crossterm = "*"
- At second `Handle to the console` ```
And import the Crossterm modules you want to use.
In rust we can call `stdout()` to get an handle to the current default console handle. For example when in unix sytems you want to execute some ANSI escape code you have to write it to terminal. I can write it to stdout (screen ouput) withs is the main screen. ```rust
extern crate crossterm;
//like // this module is used for styling the terminal
write!(std::io::stdout(), "{}", "some ANSI code"). 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::*;
But things change when we are in alternate screen. If I execute the code above the ANSI escape code to the current stdout it will be written to the main handle and not or alternate handle, and this is not what we want. ```
To solve the problem, we need to have one place to store the handle to the console screen. So that we can write to this handle during the lifetime of the program in the different modules like `cursor, terminal and color`. This handle is stored in a subtype of the Context type. ## Useful Links
Now the user must create an `Context` type for this library. - Code documentation:
version [0.1.0](https://docs.rs/crossterm/0.1.0/crossterm/),
version [0.2.0](https://docs.rs/crossterm/0.2.0/crossterm/),
version [0.2.1](https://docs.rs/crossterm/0.2.1/crossterm/)
and [0.2.3](link)
//like - Code functionalities Examples:
let context = Context::new(); version [0.1.0](link_examples_01),
version [0.2.0](link_examples_02),
let cursor = cursor(&context); version [0.2.1](link_examples_03)
let terminal = terminal(&context); and version [0.2.3](link_examples_04)
let color = color(&context);
Now we have one global `Context` type which can be used to register terminal state changes, and in with we can manage the terminal stdout (screen output). When this `Context` disposes we run code to clean up the changes that are made to the terminal.
Maybe I am going to make a wrapper for the function calls `cursor, terminal, colour` so that when can avoid passing the context all over the place which makes to code more unreadable to my opinion. I really did not want to make API braking changes, but for the sake of the features I needed to do it. - [Cargo Page](https://crates.io/crates/crossterm)
- [Examples for specific versions](link_to_specific_version)
- [Real life examples](example_link)
// maybe I am going to create some Envoirment type which can be used for getting acces to diffrent modules that this libary provides. # Features
let envoirment = Envoirment::new(); These are the futures that this crate supports:
envoirment.color();
envoirment.cursor();
envoirment.terminal();
- Cursor.
## Features crossterm 0.1 - Moving _n_ times Up, Down, Left, Right.
- Cursor movement.
- Up, Down, Left, Right.
- Goto an certain position. - Goto an certain position.
- Get cursor position
- Storing the current cursor position and resetting to that stored cursor position later.
- Hiding an showing the cursor.
- Control over blinking of the terminal cursor (only some terminals are supporting this).
- Styled output - Styled output
- Foreground color (16 base colors) - Foreground color (16 base colors)
- Background color (16 base colors) - Background color (16 base colors)
- 256 color support (unix only).
- Text Attributes like: bold, italic, underscore and crossed word ect (unix only).
- Custom ANSI color code input to set fore- and background color (unix only).
- Terminal - Terminal
- Clearing - Clearing (all lines, current line, from cursor down and up, until new line)
- Scrolling - Scrolling (Up, down)
- Size - Get size of terminal
- Set size of the terminal.
- Alternate screen
- Raw screen
- Exit the current process.
- Detailed documentation on every item. - Detailed documentation on every item.
- Examples for every client callable code. - Examples for every client callable code.
- Real life examples.
## Features crossterm 0.2 ## Examples
- 256 color support. For detailed examples of all Crossterm functionalities check the [examples](https://github.com/TimonPost/crossterm/tree/master/examples) directory.
- 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 ### Crossterm wrapper | [see more](example_link)
This is a wrapper for the modules crossterm provides. This is introduced to mange the `Context` for the user.
```
let crossterm = Crossterm::new();
- Default ANSI escape codes for windows machines, if windows does not support ANSI switsh back to WINAPI. // get instance of the modules, whereafter you can use the methods the particulary module provides.
- method grammer mistake fixed [Issue 3](https://github.com/TimonPost/crossterm/issues/3) let color = crossterm.color();
- Some Refactorings in method names see [issue 4](https://github.com/TimonPost/crossterm/issues/4) let cursor = crossterm.cursor();
- Removed bin refrence from crate [Issue 6](https://github.com/TimonPost/crossterm/issues/6) let terminal = crossterm.terminal();
- 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)
## fixes in crossterm 0.2.2 // write text to console wheter it be the main screen or the alternate screen.
- Bug see [issue 15](https://github.com/TimonPost/crossterm/issues/15) 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](example_link)
```rust
use crossterm::style::{Color};
use crossterm::Crossterm;
// 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.
// create instance of `Crossterm`
let crossterm = Crossterm::new();
## Features crossterm 0.2.3 // store style in styled object and print it
- Alternate screen for windows and unix systems. let mut styledobject = crossterm.paint("stored styled font in variable").with(Color::Green).on(Color::Yellow);
- Rawscreen for unix systems maybe windows [Issue 5](https://github.com/TimonPost/crossterm/issues/5).. println!("{}",styledobject);
- Hiding an showing the cursor.
- Control over blinking of the terminal cursor.
## TODO Features crossterm 0.2.2 // Or you can print it directly.
- Raw state implementation for windows [Issue 5](https://github.com/TimonPost/crossterm/issues/5). println!("{}", crossterm.paint("Red font on blue background color").with(Color::Red).on(Color::Blue));
- Alternate screen for windows println!("{}", crossterm.paint("Red font on default background color").with(Color::Red));
println!("{}", crossterm.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 {}", crossterm.paint(" ").on(Color::Rgb {r: 10, g: 10, b: 10}));
// Set background Color from RGB
println!("ANSI value (50): \t {}", crossterm.paint(" ").on(Color::AnsiValue(50)));
// Use attributes to syle the font.
println!("{}", crossterm.paint("Normal text"));
println!("{}", crossterm.paint("Bold text").bold());
println!("{}", crossterm.paint("Italic text").italic());
println!("{}", crossterm.paint("Slow blinking text").slow_blink());
println!("{}", crossterm.paint("Rapid blinking text").rapid_blink());
println!("{}", crossterm.paint("Hidden text").hidden());
println!("{}", crossterm.paint("Underlined text").underlined());
println!("{}", crossterm.paint("Reversed color").reverse());
println!("{}", crossterm.paint("Dim text color").dim());
println!("{}", crossterm.paint("Crossed out font").crossed_out());
```
### Cursor | [see more](example_link)
```rust
use crossterm::Context;
use crossterm::cursor::cursor;
// create context to pass to the `cursor()` function.
let context = Context::new();
let mut cursor = cursor(&context);
/// Moving the cursor | demo
// 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 | demo
// Goto X: 5 Y: 5
cursor.goto(5,5);
// Safe cursor position: X: 5 Y: 5
cursor.save_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");
// hide cursor
cursor.hide();
// show cursor
cursor.show();
// blink or not blinking of the cursor (not widely supported)
cursor.blink(true)
```
### Terminal | [see more](example_link)
```rust
use crossterm::terminal::{terminal,ClearType};
use crossterm::Context;
let mut context = Context::new();
let mut terminal = terminal(&context);
// 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();
// 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);
// exit the current process.
terminal.exit();
// write to the terminal whether you are on the main screen or alternate screen.
terminal.write("Some text\n Some text on new line");
// use the `paint()` for styling font
println!("{}", terminal.paint("x").with(Color::Red).on(Color::Blue));
```
For alternate screen and raw screen I recommend you to check this [link](example_link) for better examples.
## Tested terminals ## Tested terminals
@ -97,36 +249,30 @@ Maybe I am going to make a wrapper for the function calls `cursor, terminal, col
- Windows 10 (pro) - Windows 10 (pro)
- Ubuntu Desktop Terminal - Ubuntu Desktop Terminal
- Ubuntu 17.10 - Ubuntu 17.10
- Arch linux Konsole
This crate supports all unix terminals and windows terminals down to windows XP but not all of them have been tested.
The above terminals have been tested. Crossterm should works also for windows 7, 8 consoles and all ansi supportable consoles. 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, I really would appreciate it.
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 ## How it works
Crossterm is using `WINAPI` for windows versions lower than windows 10 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 can call some action and the module will deside what to do based on the current platform. And it will execute that action. Crossterm is using ANSI escape codes by default for all systems unix and windows systems.
For Windows systems it is a different story since Windows version lower than 10 will use WinApi instead because they are not supporting ANSI escape codes.
## Notice ## 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. This library is library is stable. There will not be changed much in the code design so do not worry to much.
If there are any changes that affect previous versions I will describe what to change when upgrading Crossterm to an newer version.
## Todo ## 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 mouse events
- Handling key events - Handling key events
- Tests - Tests
## Contributing ## 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. 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 easily extend to multiple platforms.
## Versioning As you study the code you will quickly see what the architecture is.
Maybe later there will be an documentation for Crossterm architecture design.
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 ## Authors

View File

@ -1,24 +0,0 @@
Upgrade crossterm 0.2 to 0.2.1
Namespaces:
I have changed the namespaces. I found the namsespaces to long so I have shortened them like the following:
Old: crossterm::crossterm_style
New: crossterm::style
Old: crossterm::crossterm_terminal
New: crossterm::terminal
Old: crossterm::crossterm_cursor
New: crossterm::cursor
Method names that changed [Issue 4](https://github.com/TimonPost/crossterm/issues/4):
Old: crossterm::crossterm_cursor::get();
New: use crossterm::cursor::cursor();
Old: crossterm::crossterm_terminal::get();
New: use crossterm::terminal::terminal();
Old: crossterm::crossterm_style::color::get();
New: use crossterm::style::color::color();

View File

@ -0,0 +1,7 @@
## 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.

View File

@ -0,0 +1,7 @@
## fixes in crossterm 0.2.1
- Default ANSI escape codes for windows machines, if windows does not support ANSI switch back to WinApi.
- method grammar 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 reference from crate [Issue 6](https://github.com/TimonPost/crossterm/issues/6)
- Get position unix fixed [issue 8](https://github.com/TimonPost/crossterm/issues/8)

View File

@ -0,0 +1,2 @@
## fixes in crossterm 0.2.2
- Bug see [issue 15](https://github.com/TimonPost/crossterm/issues/15)

View File

@ -0,0 +1,121 @@
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 functionalities.
Because you will have some work to get to the new version of crossterm.
But if you are starting to use this crate I highly recommend you to switch to the new version `0.2.3`.
Some Features crossterm 0.2.3
- Alternate screen for windows and unix systems.
- Rawscreen for unix and windows systems [Issue 5](https://github.com/TimonPost/crossterm/issues/5)..
- Hiding an showing the cursor.
- Control over blinking of the terminal cursor (only some terminals are supporting this).
- The terminal state will be set to its original state when process ends [issue7](https://github.com/TimonPost/crossterm/issues/7).
- exit the current process.
## Alternate screen
This create supports alternate screen for both windows and unix systems. You can use
*Nix style applications often utilize an alternate screen buffer, so that they can modify the entire contents of the buffer, without affecting the application that started them.
The alternate buffer is exactly the dimensions of the window, without any scrollback region.
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.
## Raw screen
This crate now supports raw screen for both windows and unix systems.
What exactly is raw state:
- No line buffering.
Normally the terminals uses line buffering. This means that the input will be send to the terminal line by line.
With raw mode the input will be send one byte at a time.
- Input
All input has to be written manually by the programmer.
- Characters
The characters are not processed by the terminal driver, but are sent straight through.
Special character have no meaning, like backspace will not be interpret as backspace but instead will be directly send to the terminal.
With these modes you can easier design the terminal screen.
## Some functionalities added
- Hiding and showing terminal cursor
- Enable or disabling blinking of the cursor for unix systems (this is not widely supported)
- Restoring the terminal to original modes.
- Added a [wrapper](linktocrosstermtype) for managing all the functionalities of crossterm `Crossterm`.
- Exit the current running process
## Examples
Added examples for each version of crossterm version. Also added a folder with some real life examples.
## Context
What is the `Context` all about? This `Context` has several reasons why it is introduced into `crossterm version 0.2.3`.
These points are related to the features like `Alternatescreen` and managing the terminal state.
- At first `Terminal state`:
Because this is a terminal manipulating library there will be made changes to terminal when running an process.
If you stop the process you want the terminal back in its original state.
Therefore, I need to track the changes made to the terminal.
- At second `Handle to the console`
In Rust we can use `stdout()` to get an handle to the current default console handle.
For example when in unix systems you want to print something to the main screen you can use the following code:
write!(std::io::stdout(), "{}", "some text").
But things change when we are in alternate screen modes.
We can not simply use `stdout()` to get a handle to the alternate screen, since this call returns the current default console handle (handle to mainscreen).
Because of that we need to store an handle to the current screen.
This handle could be used to put into alternate screen modes and back into main screen modes.
Through this stored handle Crossterm can execute its command and write on and to the current screen whether it be alternate screen or main screen.
For unix systems we store the handle gotten from `stdout()` for windows systems that are not supporting ANSI escape codes we store WinApi `HANDLE` struct witch will provide access to the current screen.
So to recap this `Context` struct is a wrapper for a type that manges terminal state changes.
When this `Context` goes out of scope all changes made will be undone.
Also is this `Context` is a wrapper for access to the current console screen.
Because Crossterm needs access to the above to types quite often I have chosen to add those two in one struct called `Context` so that this type could be shared throughout library.
Check this link for more info: [cleanup of the changes](https://stackoverflow.com/questions/48732387/how-can-i-run-clean-up-code-in-a-rust-library).
More info over writing to alternate screen buffer on windows and unix see this [link](https://github.com/TimonPost/crossterm/issues/17)
__Now the user has to pass an context type to the modules of Crossterm like this:__
let context = Context::new();
let cursor = cursor(context);
let terminal = terminal(context);
let color = color(context);
Because this looks a little odd I will provide a type withs will manage the `Context` for you. You can call the different modules like the following:
let crossterm = Crossterm::new();
let color = crossterm.color();
let cursor = crossterm.cursor();
let terminal = crossterm.terminal();
### 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 example folder at github
_Create alternate screen from `Context`_
// create context.
let context = crossterm::Context::new();
// create instance of Alternatescreen by the given context, this wil also switch to it.
let mut screen = crossterm::AlternateScreen::from(context.clone());
// write to the alternate screen.
write!(screen, "test");
_Create alternate screen from `Crossterm`:_
// create context.
let crossterm = ::crossterm::Crossterm::new();
// create instance of Alternatescreen by the given refrence to crossterm, this wil also switch to it.
let mut screen = crossterm::AlternateScreen::from(&crossterm);
// write to the alternate screen.
write!(screen, "test");
To get the functionalities of `cursor(), color(), terminal()` also working on alternate screen.
You need to pass it the same `Context` as you have passed to the previous three called functions,
If you don't use the same `Context` in `cursor(), color(), terminal()` than these modules will be using the main screen and you will not see anything at the alternate screen.

79
docs/UpgradeManual.md Normal file
View File

@ -0,0 +1,79 @@
## Upgrade crossterm 0.2.1 to 0.2.3
***WARNING***
This new version contains some cool features but to get those features working I needed to add some user API braking changes.
I really did not want to do this but it had to be done for some reasons. Check `LINK (updates crossterm version)` for more info about why.
First thing that has changed is that you need to pass a reference to an `Rc<Context>` to the modules: `cursor(), color(), terminal()`
```
use crossterm::terminal::terminal;
use crossterm::cursor::cursor;
use crossterm::style::color;
/// Old situation
let cursor = cursor();
let terminal = terminal();
let color = color();
/// new situation
use crossterm::Context;
let context: Rc<Context> = Context::new();
let cursor = cursor(&context);
let terminal = terminal(&context);
let color = color(&context);
```
Also the `::crossterm::style::paint()` function does not exits anymore like before:
Instead you could do it like the following:
```
use crossterm::Crossterm;
use crossterm::style::Color;
use crossterm::terminal::terminal;
// 1: use the `Crossterm` type
let crossterm = Crossterm::new();
let mut color = crossterm.paint("Red on Blue").with(Color::Red).on(Color::Blue);
// 2: use the `Terminal` type
let context: Rc<Context> = Context::new();
let terminal = terminal(&context).paint("Red on Blue").with(Color::Red).on(Color::Blue);
```
And you do not need `mut` for a lot of function calls anymore.
## Upgrade crossterm 0.2 to 0.2.1
Namespaces:
I have changed the namespaces. I found the namsespaces to long so I have shortened them like the following:
```
Old: crossterm::crossterm_style
New: crossterm::style
Old: crossterm::crossterm_terminal
New: crossterm::terminal
Old: crossterm::crossterm_cursor
New: crossterm::cursor
```
Method names that changed [Issue 4](https://github.com/TimonPost/crossterm/issues/4):
```
Old: ::crossterm::crossterm_cursor::get();
New: ::crossterm::cursor::cursor();
Old: ::crossterm::crossterm_terminal::get();
New: ::crossterm::terminal::terminal();
Old: ::crossterm::crossterm_style::color::get();
New: ::crossterm::style::color::color();
```

View File

@ -0,0 +1,67 @@
-extern crate crossterm;
-
-use crossterm::Crossterm;
-
-/// use the `Crossterm` to get an instance to the cursor module | demonstration.
-pub fn use_crossterm_cursor()
-{
- let crossterm = Crossterm::new();
- let mut cursor = crossterm.cursor();
- cursor.goto(5,5).print("test");
-}
-
-use crossterm::style::Color;
-
-/// use the `Crossterm` to get an instance to the color module | demonstration.
-pub fn use_crossterm_color()
-{
- let crossterm = Crossterm::new();
- let mut color = crossterm.color();
- color.set_bg(Color::Red);
- color.set_fg(Color::Green);
-}
-
-use crossterm::terminal::ClearType;
-
-/// use the `Crossterm` to get an instance to the terminal module | demonstration.
-pub fn use_crossterm_terminal()
-{
- let crossterm = Crossterm::new();
- let mut terminal = crossterm.terminal();
- terminal.clear(ClearType::All);
- terminal.set_size(40,40);
-}
-
-/// paint text with colors using `Crossterm` | demonstration.
-pub fn use_crossterm_paint()
-{
- let crossterm = Crossterm::new();
- crossterm.paint("Black on BLUE").with(Color::Black).on(Color::Blue);
-}
-
-/// write text to terminal using `Crossterm` | demonstration.
-pub fn use_crossterm_write()
-{
- let crossterm = Crossterm::new();
- crossterm.write("some text \nsome text on new line");
-}
-
-/// Switch to alternate screen using the `Context` of `Crossterm` | demonstration.
-pub fn create_alternate_screen_from_crossterm()
-{
- use crossterm::screen::*;
- use std::convert::From;
-
- let crossterm = Crossterm::new();
-
- {
- // move into alternate screen
- let alternate_screen = AlternateScreen::from(crossterm.context());
-
- // this will move the cursor and print `some text` on the alternate screen.
- crossterm.cursor().goto(10, 10).print("Some text");
- } // <- alternate screen ends here an will be switched back to main screen.
-
- // print "Some other text" on the mainscreen at x: 0, y: 10
- crossterm.cursor().goto(0,10).print("Some other text");
-}

View File

@ -7,5 +7,5 @@ authors = ["TimonPost <timonpost@hotmail.nl>"]
rand = "0.4.2" rand = "0.4.2"
[dependencies.crossterm] [dependencies.crossterm]
path = "../../../../" path = "../../../../"
branch = "development" branch = "development"

View File

@ -25,14 +25,16 @@ fn main()
/// run the program /// run the program
pub fn run() pub fn run()
{ {
// create new Crossterm instance. // // create new Crossterm instance.
let mut crossterm = Crossterm::new(); // let mut crossterm = Crossterm::new();
//
// print_welcome_screen(&crossterm);
//
// start_algorithm(&mut crossterm);
//
// print_end_screen(&crossterm);
print_welcome_screen(&crossterm);
start_algorithm(&mut crossterm);
print_end_screen(&crossterm);
} }
fn start_algorithm(crossterm: &mut Crossterm) fn start_algorithm(crossterm: &mut Crossterm)

View File

@ -1 +1 @@
{"rustc_fingerprint":8647232868903026531,"outputs":{"1617349019360157463":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/timonpost/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\nunix\n",""],"1164083562126845933":["rustc 1.27.0 (3eda71b00 2018-06-19)\nbinary: rustc\ncommit-hash: 3eda71b00ad48d7bf4eef4c443e7f611fd061418\ncommit-date: 2018-06-19\nhost: x86_64-unknown-linux-gnu\nrelease: 1.27.0\nLLVM version: 6.0\n",""],"15337506775154344876":["___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/timonpost/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\ndebug_assertions\nproc_macro\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\nunix\n",""]}} {"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",""]}}

View File

@ -1 +0,0 @@
{"rustc":17859320367814235581,"features":"[]","target":1835671024820821591,"profile":9731924280612788042,"path":5874237414778743863,"deps":[["libc v0.2.42","libc",7021846413676180619],["termios v0.3.0","termios",225527280915896466]],"local":[{"MtimeBased":[[1531417484,933431388],".fingerprint/crossterm-024f015e49345722/dep-lib-crossterm-024f015e49345722"]}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":505120086900794094,"features":"[]","target":1835671024820821591,"profile":7990393541957723157,"path":16224085644499113573,"deps":[["lazy_static v1.0.1","lazy_static",3268157024908646865],["rand v0.4.2","rand",13520812317507890964],["winapi v0.3.5","winapi",1778169349195837668]],"local":[{"Precalculated":"f962fe40406713777f756c87dfbdc9e1ae046ebf"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -0,0 +1 @@
{"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"}

View File

@ -1 +0,0 @@
{"rustc":505120086900794094,"features":"[]","target":1835671024820821591,"profile":7990393541957723157,"path":11100067500724247539,"deps":[["rand v0.4.2","rand",13520812317507890964],["winapi v0.3.5","winapi",1778169349195837668]],"local":[{"Precalculated":"0.2.2"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":17859320367814235581,"features":"[]","target":16187384185378585901,"profile":9731924280612788042,"path":1036222786711178230,"deps":[["crossterm v0.2.0 (file:///home/timonpost/Documents/programming/rust/crossterm)","crossterm",16094129386430373199],["rand v0.4.2","rand",5199440376217873770]],"local":[{"MtimeBased":[[1531417485,933431389],".fingerprint/first_depth_search-480a32cad2816a77/dep-bin-first_depth_search-480a32cad2816a77"]}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":505120086900794094,"features":"[]","target":16187384185378585901,"profile":13192692623843877417,"path":1036222786711178230,"deps":[["crossterm v0.2.0 (https://github.com/TimonPost/crossterm?branch=development#f962fe40)","crossterm",1314043194552542052],["rand v0.4.2","rand",13520812317507890964]],"local":[{"MtimeBased":[[1531330810,719552000],".fingerprint\\first_depth_search-b6f33af2cce3b29f\\dep-bin-first_depth_search-b6f33af2cce3b29f"]}],"rustflags":[],"edition":"Edition2015"}

View File

@ -0,0 +1 @@
{"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"}

View File

@ -1 +0,0 @@
{"rustc":505120086900794094,"features":"[]","target":9875368636174935519,"profile":7990393541957723157,"path":12202161250623745058,"deps":[],"local":[{"Precalculated":"1.0.1"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":17859320367814235581,"features":"[\"default\", \"use_std\"]","target":5218373402463339046,"profile":7990393541957723157,"path":13717595440777003181,"deps":[],"local":[{"Precalculated":"0.2.42"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":17859320367814235581,"features":"[\"default\", \"libc\", \"std\"]","target":11704435198914552709,"profile":7990393541957723157,"path":10951581581006983669,"deps":[["libc v0.2.42","libc",7021846413676180619]],"local":[{"Precalculated":"0.4.2"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +0,0 @@
{"rustc":17859320367814235581,"features":"[]","target":16631529943849245990,"profile":7990393541957723157,"path":8788063229490378122,"deps":[["libc v0.2.42","libc",7021846413676180619]],"local":[{"Precalculated":"0.3.0"}],"rustflags":[],"edition":"Edition2015"}

View File

@ -1 +1 @@
{"rustc":0,"features":"","target":0,"profile":0,"path":0,"deps":[],"local":[{"MtimeBased":[[1531161552,729796600],"build\\winapi-82ad602439f8f31a\\output"]},{"EnvBased":["WINAPI_NO_BUNDLED_LIBRARIES",null]},{"EnvBased":["WINAPI_STATIC_NOBUNDLE",null]}],"rustflags":[],"edition":"Edition2015"} {"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"}

View File

@ -1,5 +1,5 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\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.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.2 - New Version (Not finished)\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\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: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\winapi-0.3.5\build.rs:

View File

@ -1,28 +1,28 @@
cargo:rerun-if-changed=build.rs cargo:rerun-if-changed=build.rs
cargo:rerun-if-env-changed=WINAPI_NO_BUNDLED_LIBRARIES cargo:rerun-if-env-changed=WINAPI_NO_BUNDLED_LIBRARIES
cargo:rerun-if-env-changed=WINAPI_STATIC_NOBUNDLE cargo:rerun-if-env-changed=WINAPI_STATIC_NOBUNDLE
cargo:rustc-cfg=feature="sspi"
cargo:rustc-cfg=feature="winreg"
cargo:rustc-cfg=feature="processthreadsapi"
cargo:rustc-cfg=feature="ntstatus"
cargo:rustc-cfg=feature="vcruntime"
cargo:rustc-cfg=feature="wincred"
cargo:rustc-cfg=feature="ktmtypes"
cargo:rustc-cfg=feature="basetsd"
cargo:rustc-cfg=feature="cfgmgr32"
cargo:rustc-cfg=feature="lsalookup"
cargo:rustc-cfg=feature="guiddef"
cargo:rustc-cfg=feature="vadefs" cargo:rustc-cfg=feature="vadefs"
cargo:rustc-cfg=feature="windef" 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="subauth"
cargo:rustc-cfg=feature="wingdi" cargo:rustc-cfg=feature="wingdi"
cargo:rustc-cfg=feature="libloaderapi" cargo:rustc-cfg=feature="sspi"
cargo:rustc-cfg=feature="limits"
cargo:rustc-cfg=feature="minwinbase"
cargo:rustc-cfg=feature="cfg"
cargo:rustc-cfg=feature="ntdef"
cargo:rustc-cfg=feature="fileapi"
cargo:rustc-cfg=feature="excpt" 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=advapi32
cargo:rustc-link-lib=dylib=credui cargo:rustc-link-lib=dylib=credui
cargo:rustc-link-lib=dylib=gdi32 cargo:rustc-link-lib=dylib=gdi32

View File

@ -1 +1 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.3\program_examples\first_depth_search\target\debug

View File

@ -1,38 +0,0 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libcrossterm-024f015e49345722.rlib: /home/timonpost/Documents/programming/rust/crossterm/src/lib.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/macros.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/crossterm.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/functions.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/traits.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/screen.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/raw.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/command_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/unix_command.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/shared_commands.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/context.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/state_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/ansi_cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/ansi_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/ansi_color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/objectstyle.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/styledobject.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/ansi_terminal.rs
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/crossterm-024f015e49345722.d: /home/timonpost/Documents/programming/rust/crossterm/src/lib.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/macros.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/crossterm.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/functions.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/traits.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/screen.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/raw.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/command_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/unix_command.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/shared_commands.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/context.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/state_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/ansi_cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/ansi_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/ansi_color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/objectstyle.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/styledobject.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/ansi_terminal.rs
/home/timonpost/Documents/programming/rust/crossterm/src/lib.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/macros.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/crossterm.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/functions.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/traits.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/screen.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/shared/raw.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/kernel/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/terminal.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/command_manager.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/commands/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/commands/unix_command.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/commands/shared_commands.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/context.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/state/state_manager.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/cursor/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/cursor/cursor.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/cursor/ansi_cursor.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/manager/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/manager/manager.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/manager/ansi_manager.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/color/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/color/color.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/color/ansi_color.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/styles/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/styles/objectstyle.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/style/styles/styledobject.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/terminal/mod.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/terminal/terminal.rs:
/home/timonpost/Documents/programming/rust/crossterm/src/terminal/ansi_terminal.rs:

View File

@ -1,45 +0,0 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\libcrossterm-5f9f68198c107c92.rlib: C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src/lib.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\macros.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\environment.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\functions.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\screen.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\traits.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\command_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\win_commands.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\shared_commands.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\context.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\state_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\default_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\ansi_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\winapi_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\ansi_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\win_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\ansi_color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\winapi_color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\objectstyle.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\styledobject.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\ansi_terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\winapi_terminal.rs
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\crossterm-5f9f68198c107c92.d: C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src/lib.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\macros.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\environment.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\functions.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\screen.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\traits.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\command_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\win_commands.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\shared_commands.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\context.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\state_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\default_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\ansi_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\winapi_cursor.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\ansi_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\win_manager.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\ansi_color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\winapi_color.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\objectstyle.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\styledobject.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\mod.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\ansi_terminal.rs C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\winapi_terminal.rs
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src/lib.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\macros.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\environment.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\functions.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\screen.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\shared\traits.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\ansi_support.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\cursor.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\kernel.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\kernel\windows_kernel\terminal.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\command_manager.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\win_commands.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\commands\shared_commands.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\context.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\state\state_manager.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\cursor.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\default_cursor.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\ansi_cursor.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\cursor\winapi_cursor.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\manager.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\ansi_manager.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\manager\win_manager.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\color.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\ansi_color.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\color\winapi_color.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\objectstyle.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\style\styles\styledobject.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\mod.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\terminal.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\ansi_terminal.rs:
C:\Users\Timon\.cargo\git\checkouts\crossterm-8f9ef291f98e9b43\f962fe4\src\terminal\winapi_terminal.rs:

View File

@ -0,0 +1,45 @@
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:

View File

@ -1,38 +0,0 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\libcrossterm-8f61ecf1c102428d.rlib: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src/lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\macros.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\traits.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\functions.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\context.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\win_commands.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\shared_commands.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\winapi_cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\ansi_cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\winapi_color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\ansi_color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\objectstyle.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\styledobject.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\winapi_terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\ansi_terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\screen.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\raw.rs
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\crossterm-8f61ecf1c102428d.d: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src/lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\macros.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\traits.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\functions.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\kernel.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\ansi_support.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\context.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\win_commands.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\shared_commands.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\winapi_cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\ansi_cursor.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\winapi_color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\ansi_color.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\objectstyle.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\styledobject.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\mod.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\winapi_terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\ansi_terminal.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\screen.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\raw.rs
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src/lib.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\macros.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\traits.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\shared\functions.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\kernel.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\cursor.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\terminal.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\kernel\windows_kernel\ansi_support.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\context.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\win_commands.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\state\commands\shared_commands.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\cursor.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\winapi_cursor.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\cursor\ansi_cursor.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\color.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\winapi_color.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\color\ansi_color.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\objectstyle.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\style\styles\styledobject.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\mod.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\terminal.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\winapi_terminal.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\ansi_terminal.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\screen.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\crossterm-0.2.2\src\terminal\raw.rs:

View File

@ -1,9 +0,0 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-480a32cad2816a77: src/main.rs src/map.rs src/algorithm.rs src/messages.rs src/variables.rs
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/first_depth_search-480a32cad2816a77.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:

View File

@ -1,9 +0,0 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\first_depth_search-b6f33af2cce3b29f.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.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\first_depth_search-b6f33af2cce3b29f.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:

View File

@ -1,9 +0,0 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\first_depth_search-bb4b495df634f778.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.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\first_depth_search-bb4b495df634f778.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:

View File

@ -0,0 +1,9 @@
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:

View File

@ -1,6 +0,0 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\liblazy_static-7b749abda964e14a.rlib: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lazy.rs
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\program_examples\first_depth_search\target\debug\deps\lazy_static-7b749abda964e14a.d: C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lib.rs C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lazy.rs
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lib.rs:
C:\Users\Timon\.cargo\registry\src\github.com-1ecc6299db9ec823\lazy_static-1.0.1\src\lazy.rs:

View File

@ -1,34 +0,0 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/liblibc-76755a6888618a72.rlib: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/macros.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/dox.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/windows.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/net.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/cloudabi/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/fuchsia/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/uclibc/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/newlib/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/bsd/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/solaris/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/haiku/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/emscripten.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/android/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/musl/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mips/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/s390x.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b32/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/aarch64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/powerpc64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/sparc64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x86_64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x32.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/not_x32.rs
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libc-76755a6888618a72.d: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/macros.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/dox.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/windows.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/net.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/cloudabi/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/fuchsia/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/uclibc/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/newlib/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/bsd/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/solaris/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/haiku/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/emscripten.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/android/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/musl/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mips/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/s390x.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b32/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/aarch64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/powerpc64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/sparc64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x86_64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x32.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/not_x32.rs
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/lib.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/macros.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/dox.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/windows.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/redox/net.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/cloudabi/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/fuchsia/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/uclibc/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/newlib/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/bsd/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/solaris/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/haiku/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/emscripten.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/android/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/musl/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/mips/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/s390x.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b32/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/aarch64.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/powerpc64.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/sparc64.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x86_64.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/x32.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/unix/notbsd/linux/other/b64/not_x32.rs:

View File

@ -1,22 +0,0 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/librand-793ccaec440a94cc.rlib: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/range.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/gamma.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/normal.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/exponential.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/ziggurat_tables.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/jitter.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/os.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/read.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/reseeding.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/seq.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/rand_impls.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/chacha.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/xorshift.rs
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/rand-793ccaec440a94cc.d: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/range.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/gamma.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/normal.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/exponential.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/ziggurat_tables.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/jitter.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/os.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/read.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/reseeding.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/seq.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/rand_impls.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/chacha.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac64.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/xorshift.rs
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/lib.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/range.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/gamma.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/normal.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/exponential.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/distributions/ziggurat_tables.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/jitter.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/os.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/read.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/reseeding.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/seq.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/rand_impls.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/chacha.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/isaac64.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.4.2/src/prng/xorshift.rs:

View File

@ -1,6 +1,6 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\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\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.2 - New Version (Not finished)\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\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\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\mod.rs:

View File

@ -1,8 +0,0 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/libtermios-8ad962b2a2626fb5.rlib: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/ffi.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/linux.rs
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm 0.2.3/program_examples/first_depth_search/target/debug/deps/termios-8ad962b2a2626fb5.d: /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/lib.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/ffi.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/mod.rs /home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/linux.rs
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/lib.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/ffi.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/mod.rs:
/home/timonpost/.cargo/registry/src/github.com-1ecc6299db9ec823/termios-0.3.0/src/os/linux.rs:

View File

@ -1,6 +1,6 @@
C:\Users\Timon\Documents\Programming\rust\crossterm\examples\Crossterm 0.2.2 - New Version (Not finished)\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\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.2 - New Version (Not finished)\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\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\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\macros.rs:

View File

@ -1 +1 @@
/home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/target/debug/first_depth_search: /home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/src/algorithm.rs /home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/src/main.rs /home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/src/map.rs /home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/src/messages.rs /home/timonpost/Documents/programming/rust/crossterm/examples/Crossterm\ 0.2.3/program_examples/first_depth_search/src/variables.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/ansi_cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/cursor.rs /home/timonpost/Documents/programming/rust/crossterm/src/cursor/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/kernel/unix_kernel/terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/lib.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/ansi_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/manager/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/crossterm.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/functions.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/macros.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/raw.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/screen.rs /home/timonpost/Documents/programming/rust/crossterm/src/shared/traits.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/command_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/shared_commands.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/commands/unix_command.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/context.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/state/state_manager.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/ansi_color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/color.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/color/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/objectstyle.rs /home/timonpost/Documents/programming/rust/crossterm/src/style/styles/styledobject.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/ansi_terminal.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/mod.rs /home/timonpost/Documents/programming/rust/crossterm/src/terminal/terminal.rs 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

Some files were not shown because too many files have changed in this diff Show More