瀏覽代碼

interface: Don't mark as cdylib (#84)

#### Problem

The interface crate has a cdylib target, which makes it impossible to
run LTO on it.

#### Summary of changes

Remove the cdylib target.
Jon C 1 月之前
父節點
當前提交
facc5c7152
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      interface/Cargo.toml

+ 1 - 1
interface/Cargo.toml

@@ -30,7 +30,7 @@ spl-pod = "0.7.1"
 thiserror = "2.0"
 
 [lib]
-crate-type = ["cdylib", "lib"]
+crate-type = ["lib"]
 
 [lints]
 workspace = true