Compare commits

...

2 Commits

Author SHA1 Message Date
R Tyler Croy 10af0c3335
Add a `cargo init` skeleton 2023-01-27 11:21:30 -08:00
R Tyler Croy 545b2405b7
Add a simple asciidoc README 2023-01-27 11:20:58 -08:00
5 changed files with 21 additions and 3 deletions

5
.gitignore vendored
View File

@ -14,3 +14,8 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Added by cargo
/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "janky"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

5
README.adoc Normal file
View File

@ -0,0 +1,5 @@
= Janky CI
Janky is a simple CI system built in Rust. This is performative coding and not
intended to be a production system you can actually use.

View File

@ -1,3 +0,0 @@
# janky
A Janky CI system

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}