Add cyborg_editor crate

This commit is contained in:
mars 2022-05-14 15:35:27 -06:00
parent 99633ea0be
commit 5b7f621b2a
3 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
[workspace]
members = [
"editor"
]
[package]
name = "cyborg"
version = "0.1.0"

7
editor/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "cyborg_editor"
version = "0.1.0"
edition = "2021"
[dependencies]
cyborg = { path = "../" }

3
editor/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}