Skip to content

Commit

Permalink
additions
Browse files Browse the repository at this point in the history
  • Loading branch information
isaak committed May 27, 2024
1 parent 33f714b commit 687be03
Show file tree
Hide file tree
Showing 53 changed files with 45 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Run Formatter
run: cargo fmt buzz_cli --check
run: cargo fmt -- buzz_cli/* --check

12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
[package]
name = "fizz-buzz-ai"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
[workspace]
members = [
"buzz_cli"
]
5 changes: 4 additions & 1 deletion buzz_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@ version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

[[bin]]
name = "buzz-cli"
path = "src/bin/buzz_cli.rs"
3 changes: 3 additions & 0 deletions buzz_cli/src/bin/buzz_cli.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello");
}
3 changes: 0 additions & 3 deletions buzz_cli/src/main.rs

This file was deleted.

1 change: 1 addition & 0 deletions buzz_cli/target/.rustc_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc_fingerprint":12840678178876855638,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.76.0 (07dca489a 2024-02-04)\nbinary: rustc\ncommit-hash: 07dca489ac2d933c78d3c5158e3f43beefeb02ce\ncommit-date: 2024-02-04\nhost: x86_64-unknown-linux-gnu\nrelease: 1.76.0\nLLVM version: 17.0.6\n","stderr":""},"12290971416344602489":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/wiley/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\nfeature=\"cargo-clippy\"\npanic=\"unwind\"\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_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}}
3 changes: 3 additions & 0 deletions buzz_cli/target/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f1f8f4dbd74ec085
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":5627192442778965580,"profile":5601947868832436996,"path":7548128945091530124,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/buzz_cli-1a2d335ee624a060/dep-bin-buzz-cli"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4ef20e4306b85e72
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":9403893267487167784,"profile":11597332650809196192,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/buzz_cli-34965564d0fc1e12/dep-bin-buzz_cli"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f007ad53babd60de
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":18004373081649162931,"features":"[]","declared_features":"","target":5627192442778965580,"profile":11597332650809196192,"path":7548128945091530124,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/buzz_cli-b4ddb5f70c98b3c7/dep-bin-buzz-cli"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Binary file added buzz_cli/target/debug/buzz-cli
Binary file not shown.
1 change: 1 addition & 0 deletions buzz_cli/target/debug/buzz-cli.d
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/buzz-cli: /home/wiley/Code/fizz-buzz-ai/buzz_cli/src/bin/buzz_cli.rs
Binary file added buzz_cli/target/debug/buzz_cli
Binary file not shown.
9 changes: 9 additions & 0 deletions buzz_cli/target/debug/deps/buzz_cli-1a2d335ee624a060.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/libbuzz_cli-1a2d335ee624a060.rmeta: src/bin/buzz_cli.rs Cargo.toml

/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/buzz_cli-1a2d335ee624a060.d: src/bin/buzz_cli.rs Cargo.toml

src/bin/buzz_cli.rs:
Cargo.toml:

# env-dep:CLIPPY_ARGS=
# env-dep:CLIPPY_CONF_DIR
Binary file not shown.
5 changes: 5 additions & 0 deletions buzz_cli/target/debug/deps/buzz_cli-34965564d0fc1e12.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/buzz_cli-34965564d0fc1e12: src/main.rs

/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/buzz_cli-34965564d0fc1e12.d: src/main.rs

src/main.rs:
Binary file not shown.
5 changes: 5 additions & 0 deletions buzz_cli/target/debug/deps/buzz_cli-b4ddb5f70c98b3c7.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/buzz_cli-b4ddb5f70c98b3c7: src/bin/buzz_cli.rs

/home/wiley/Code/fizz-buzz-ai/buzz_cli/target/debug/deps/buzz_cli-b4ddb5f70c98b3c7.d: src/bin/buzz_cli.rs

src/bin/buzz_cli.rs:
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.

0 comments on commit 687be03

Please sign in to comment.