You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
782 B

## layout
```go
.
├── Cargo.lock
├── Cargo.toml
├── src/
├── lib.rs
├── main.rs
└── bin/
├── named-executable.rs
├── another-executable.rs
└── multi-file-executable/
├── main.rs
└── some_module.rs
├── benches/
├── large-input.rs
└── multi-file-bench/
├── main.rs
└── bench_module.rs
├── examples/
├── simple.rs
└── multi-file-example/
├── main.rs
└── ex_module.rs
└── tests/
├── some-integration-tests.rs
└── multi-file-test/
├── main.rs
└── test_module.rs
```