-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: J. K. Edwards <joed6834@colorado.edu>
- Loading branch information
1 parent
f5694e0
commit b0d0cd0
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[package] | ||
name = "pmll_logic_loop_knowledge_block" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# Author info; you can add more names or contact if needed. | ||
authors = ["Josef Kurk Edwards (OpenAI) <josef@example.com>"] | ||
|
||
description = "An example Rust project demonstrating cargo build" | ||
license = "MIT" | ||
|
||
[dependencies] | ||
# Add your dependencies here, for example: | ||
# serde = "1.0" | ||
# rand = "0.8" | ||
|
||
[package] | ||
name = "pmll_logic_loop_knowledge_block" | ||
version = "0.1.1" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["Josef Kurk Edwards (OpenAI) <josef@example.com>"] | ||
description = "An upgraded Rust project demonstrating cargo build and common dependencies." | ||
|
||
# Optional: if you're publishing to crates.io, you can also include: | ||
# repository = "https://github.com/YOUR_USERNAME/YOUR_REPO" | ||
|
||
[dependencies] | ||
# Example commonly used crates: | ||
serde = "1.0" | ||
rand = "0.8" | ||
|
||
# If you need additional crates, add them here (e.g. 'reqwest', 'tokio', etc.) | ||
|
||
[profile.release] | ||
# Example release build settings, if needed | ||
opt-level = 3 |