From 5f8cbf359e2e13300cf974e3db1e773b7a05f126 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Tue, 9 Oct 2018 15:35:59 -0700 Subject: [PATCH] Use cdylib to avoid runtime libstd dependencies --- programs/native/move_funds/Cargo.toml | 2 +- programs/native/noop/Cargo.toml | 2 +- programs/native/solua/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/native/move_funds/Cargo.toml b/programs/native/move_funds/Cargo.toml index 1f2a1a909..63400136c 100644 --- a/programs/native/move_funds/Cargo.toml +++ b/programs/native/move_funds/Cargo.toml @@ -10,5 +10,5 @@ solana_program_interface = { path = "../../../common" } [lib] name = "move_funds" -crate-type = ["dylib"] +crate-type = ["cdylib"] diff --git a/programs/native/noop/Cargo.toml b/programs/native/noop/Cargo.toml index e4e8350f2..91910102f 100644 --- a/programs/native/noop/Cargo.toml +++ b/programs/native/noop/Cargo.toml @@ -8,5 +8,5 @@ solana_program_interface = { path = "../../../common" } [lib] name = "noop" -crate-type = ["dylib"] +crate-type = ["cdylib"] diff --git a/programs/native/solua/Cargo.toml b/programs/native/solua/Cargo.toml index 8043d8ad6..2c2cdda19 100644 --- a/programs/native/solua/Cargo.toml +++ b/programs/native/solua/Cargo.toml @@ -12,5 +12,5 @@ bincode = "1.0.0" [lib] name = "solua" -crate-type = ["dylib"] +crate-type = ["cdylib"]