chore: fix test

This commit is contained in:
nathan 2024-06-25 22:04:11 +08:00
parent 94f7add54d
commit 565c003f1b
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,24 @@
[package]
name = "flowy-sidecar"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
once_cell = "1.19.0"
thiserror = "1.0"
serde_json = "1.0.117"
tracing.workspace = true
crossbeam-utils = "0.8.20"
log = "0.4.21"
parking_lot.workspace = true
[dev-dependencies]
dotenv = "0.15.0"
uuid.workspace = true
tracing-subscriber = { version = "0.3.17", features = ["registry", "env-filter", "ansi", "json"] }

View File

@ -0,0 +1,6 @@
mod error;
pub mod manager;
pub mod parser;
pub mod plugin;
mod rpc_loop;
mod rpc_peer;