// build.rs
fn main() {
println!("cargo:rerun-if-changed=build.rs");
let version = env!("CARGO_PKG_VERSION");
println!("cargo:rustc-env=BUILD_VERSION={}", version);
[features]
default = ["json"]
json = ["serde_json"]
yaml = ["serde_yaml"]
[dependencies]
[workspace]
members = [
"server",
"client",
"common",
]
[package]
name = "my-app"
version = "0.1.0"
[dependencies]
tokio = "1"