feat: rename
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-04-05 21:00:43 +02:00
parent 8d7c3cfd80
commit b2f704856a
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
9 changed files with 751 additions and 443 deletions

1186
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
[workspace] [workspace]
members = [ members = [
"cibus_bin" "crates/*"
] ]

View File

@ -1,5 +1,5 @@
[package] [package]
name = "cibus_bin" name = "cibus-backend"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View File

@ -39,7 +39,7 @@ async fn main() -> anyhow::Result<()> {
tracing_subscriber::registry() tracing_subscriber::registry()
.with(tracing_subscriber::EnvFilter::new( .with(tracing_subscriber::EnvFilter::new(
std::env::var("RUST_LOG").unwrap_or_else(|_| { std::env::var("RUST_LOG").unwrap_or_else(|_| {
"cibus_bin=debug,tower_http=debug,axum_extra=debug,hyper=info,mio=info".into() "cibus-backend=debug,tower_http=debug,axum_extra=debug,hyper=info,mio=info".into()
}), }),
)) ))
.with(tracing_subscriber::fmt::layer()) .with(tracing_subscriber::fmt::layer())

View File

@ -2,4 +2,4 @@
set -e set -e
cargo run cibus_bin/ cargo run cibus-backend/