mirror of
https://github.com/logos-co/scaffold.git
synced 2026-08-27 12:41:13 +00:00
Co-authored-by: Claude Opus 5 <noreply@anthropic.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[package]
|
|
name = "logos-scaffold"
|
|
version = "0.3.0"
|
|
description = "Command-line toolkit for building, running, and deploying Logos programs against a local execution zone"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/logos-co/scaffold"
|
|
rust-version = "1.81"
|
|
include = [
|
|
"/src/**",
|
|
"/templates/**",
|
|
"/templates/**/.*",
|
|
"/skills/**",
|
|
"/docs/**",
|
|
"/tests/**",
|
|
"/Cargo.toml",
|
|
"/Cargo.lock",
|
|
"/README.md",
|
|
"/LICENSE-*",
|
|
]
|
|
|
|
[[bin]]
|
|
name = "logos-scaffold"
|
|
path = "src/bin/logos-scaffold.rs"
|
|
|
|
[[bin]]
|
|
name = "lgs"
|
|
path = "src/bin/lgs.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
anyhow = "1.0"
|
|
base64 = "0.22"
|
|
bs58 = "0.5"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
clap_complete = "4.5"
|
|
include_dir = "0.7.4"
|
|
indicatif = "0.17"
|
|
flate2 = "1.1.0"
|
|
notify = "6.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
sha2 = "0.10"
|
|
tar = "0.4.44"
|
|
tempfile = "3.18.0"
|
|
thiserror = "2.0"
|
|
toml_edit = "0.22"
|
|
ureq = { version = "2.12", features = ["json"] }
|
|
walkdir = "2"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.16"
|
|
predicates = "3.1.3"
|