diff --git a/modeling-cmds/.github/workflows/ci.yml b/modeling-cmds/.github/workflows/ci.yml index 07934c00..f8933060 100644 --- a/modeling-cmds/.github/workflows/ci.yml +++ b/modeling-cmds/.github/workflows/ci.yml @@ -6,6 +6,7 @@ on: - .github/workflows/ci.yml - Cargo.lock - Cargo.toml + - '**/Cargo.toml' - rust-toolchain.toml permissions: read-all name: Rust CI diff --git a/modeling-cmds/Cargo.toml b/modeling-cmds/Cargo.toml index 715c4063..a99eb50c 100644 --- a/modeling-cmds/Cargo.toml +++ b/modeling-cmds/Cargo.toml @@ -7,7 +7,7 @@ description = "Commands in the KittyCAD Modeling API" rust-version = "1.74" repository = "https://github.com/KittyCAD/modeling-api" keywords = ["kittycad"] - +license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -18,13 +18,13 @@ diesel_derives = "2.1.2" enum-iterator = "1.4.1" enum-iterator-derive = "1.2.1" euler = "0.4.1" +kittycad-unit-conversion-derive = { path = "../unit-conversion-derive" } measurements = "0.11.0" parse-display = "0.8.2" parse-display-derive = "0.8.2" schemars = { version = "0.8.16", features = ["bigdecimal04", "chrono", "url", "uuid1"] } serde = { version = "1.0.193", features = ["derive"] } serde_bytes = "0.11.12" -kittycad-unit-conversion-derive = { path = "../unit-conversion-derive" } uuid = { version = "1.6.1", features = ["serde"] } [lints]