Single-crate project doesn't need a subdirectory. Moves Cargo.toml, src/, templates/ to root for standard Rust project layout. Updates .gitignore and test harness binary paths accordingly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
342 B
TOML
16 lines
342 B
TOML
[package]
|
|
name = "warpgate"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.101"
|
|
clap = { version = "4.5.59", features = ["derive"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
thiserror = "2.0.18"
|
|
toml = "1.0.2"
|
|
ctrlc = "3.4"
|
|
libc = "0.2"
|
|
ureq = { version = "3.2.0", features = ["json"] }
|