mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
Matej Focko
2062f120cc
Rust skeleton gets copied to ‹bin/› directory of Cargo project. Signed-off-by: Matej Focko <me@mfocko.xyz>
33 lines
338 B
Text
33 lines
338 B
Text
*
|
|
!**/
|
|
|
|
!.gitignore
|
|
|
|
# Helper scripts
|
|
!/*.sh
|
|
!.common/**/*.sh
|
|
|
|
# Archived problem sets
|
|
!*.html
|
|
|
|
# C++
|
|
!.common/cpp/**
|
|
!*.cpp
|
|
!*.hpp
|
|
# but ignore catch
|
|
.common/cpp/catch*
|
|
|
|
# Java
|
|
!*.java
|
|
|
|
# Kotlin
|
|
!*.kt
|
|
|
|
# Rust
|
|
!.common/rust/**
|
|
!*.rs
|
|
*/src/main.rs
|
|
|
|
# Don't ignore skeletons in .common, but do all others
|
|
**/skeleton*
|
|
!.common/**/skeleton*
|