Cargo.toml
 1[package]
 2name = "semantic_version"
 3version = "0.1.0"
 4edition.workspace = true
 5publish = false
 6license = "Apache-2.0"
 7description = "A library for working with semantic versioning in gpui and Zed"
 8
 9[lints]
10workspace = true
11
12[lib]
13path = "src/semantic_version.rs"
14
15[dependencies]
16anyhow.workspace = true
17serde.workspace = true