[package] name = "foo-cargo-filename-test" version = "0.3.0" authors = ["Felix Schütt "] edition = "2018" description = "Test repo to hack a build script for 'cargo install foo' to build a library as a DLL file" repository = "https://github.com/fschutt/foo-cargo-filename-test" license = "MIT" build = "build.rs" [[bin]] name = "foo_cargo_filename_test" path = "main.rs" edition = "2018" [lib] name = "foo_cargo_filename_test" edition = "2018" crate-type = ["cdylib"] doc = false [profile.dev] opt-level = 3 lto = true panic = "abort" codegen-units = 1 debug = false strip = "symbols" overflow_checks = false [profile.release] opt-level = 3 lto = true panic = "abort" codegen-units = 1 debug = false strip = "symbols" overflow_checks = false [build-dependencies] tar = "0.4" flate2 = "1.0.14"