argument parsing, skeleton structure, basic project
This commit is contained in:
11
agent/Cargo.toml
Normal file
11
agent/Cargo.toml
Normal file
@@ -0,0 +1,11 @@
|
||||
[package]
|
||||
name = "p-agent"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[[bin]]
|
||||
name = "p-agent"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
4
agent/src/main.rs
Normal file
4
agent/src/main.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
fn main() {
|
||||
println!("p-agent — worker-side agent for p");
|
||||
println!("(not yet implemented)");
|
||||
}
|
||||
Reference in New Issue
Block a user