I was a little bit confused about working with workspace because VS Code functionality of Rust tools generate a little bit different syntax of workspace description. They bring workspace information on top of Cargo.toml file like that:
workspace = { members = [ "session1/hello_world", "session1/variables"] }
[package]
name = "live_at_ardan"
version = "0.1.0"
edition = "2021"
I was a little bit confused about working with workspace because VS Code functionality of Rust tools generate a little bit different syntax of workspace description. They bring workspace information on top of
Cargo.tomlfile like that: