Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions cougr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[package]
name = "cougr-cli"
version = "0.1.0"
edition = "2021"
description = "The Cougr CLI — scaffold projects and add pieces from the canonical example catalog"
license = "MIT"
repository = "https://github.com/salazarsebas/Cougr"
homepage = "https://github.com/salazarsebas/Cougr"
keywords = ["cougr", "stellar", "soroban", "cli", "scaffolding"]
categories = ["command-line-utilities", "game-engines"]

[[bin]]
name = "cougr"
path = "src/main.rs"

[dependencies]
# Argument parsing
clap = { version = "4.5.4", features = ["derive"] }
# TOML for the embedded pieces manifest
toml = "0.8.12"
# Serialization for the manifest structs
serde = { version = "1.0.202", features = ["derive"] }
# Coloured terminal output
anstream = "0.6.14"
# Error handling
anyhow = "1.0.86"

[dev-dependencies]
tempfile = "3.10.1"
Loading
Loading