Error raised when no cdylib artifact was created
Class Methods
::
lib/rubygems/ext/cargo_builder.rb
View on GitHub
# File tmp/rubies/ruby-3.2.0/lib/rubygems/ext/cargo_builder.rb, line 307
def initialize(dir)
files = Dir.glob(File.join(dir, "**", "*")).map {|f| "- #{f}" }.join "\n"
super <<~MSG
Dynamic library not found for Rust extension (in #{dir})
Make sure you set "crate-type" in Cargo.toml to "cdylib"
Found files:
#{files}
MSG
end
No documentation available