Skip to content

Commit

Permalink
Create Cargo.toml
Browse files Browse the repository at this point in the history
Signed-off-by: J. K. Edwards <joed6834@colorado.edu>
  • Loading branch information
bearycool11 authored Jan 28, 2025
1 parent f5694e0 commit b0d0cd0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .contract/Cargo.toml
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

0 comments on commit b0d0cd0

Please sign in to comment.