Scaffold Lumbridge architecture and research plan
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
[package]
|
||||
name = "lumbridge"
|
||||
description = "Local-first workspace and terminal multiplexer for agentic engineers"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
lumbridge-core = { path = "../../crates/lumbridge-core" }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
use lumbridge_core::{Platform, ProductStatus};
|
||||
|
||||
fn main() {
|
||||
let status = ProductStatus::architecture_phase(Platform::current());
|
||||
println!(
|
||||
"Lumbridge {} ({})",
|
||||
env!("CARGO_PKG_VERSION"),
|
||||
status.platform
|
||||
);
|
||||
println!("{}", status.message);
|
||||
}
|
||||
Reference in New Issue
Block a user