feat: add base crates

This commit is contained in:
2023-02-20 21:35:19 +01:00
parent 88ed032ef0
commit 5fbae8abd6
10 changed files with 731 additions and 5 deletions

8
crates/char/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "char"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

0
crates/char/src/lib.rs Normal file
View File

View File

@@ -6,3 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eyre = { workspace = true }
tracing = { workspace = true }
color-eyre = { workspace = true }
tokio = { workspace = true }
tracing-subscriber = "0.3.16"
clap = "4.1.6"

View File

@@ -1,3 +1,4 @@
fn main() {
#[tokio::main]
async fn main() {
println!("Hello, world!");
}