├── .github └── workflows │ ├── markdown.yml │ ├── rust.yml │ └── yaml.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── examples ├── cross_func_boundries.rs ├── fizzbuzz.rs └── simple.rs └── src └── lib.rs /.github/workflows/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/.github/workflows/markdown.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.github/workflows/yaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/.github/workflows/yaml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/cross_func_boundries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/examples/cross_func_boundries.rs -------------------------------------------------------------------------------- /examples/fizzbuzz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/examples/fizzbuzz.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Property404/goto-label-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------