17 lines
No EOL
607 B
TOML
17 lines
No EOL
607 B
TOML
[target.x86_64-pc-windows-gnu]
|
|
# This is required when building with w64devkit, I'm not entirely sure why.
|
|
# (I mean, I know WHY: you get errors if you don't. Missing libeh or
|
|
# something. But the reason for that error is beyond my ability to care at
|
|
# the moment.)
|
|
rustflags = ["-C","link-self-contained=on"]
|
|
|
|
# Vendor configuration, output of `cargo vendor`.
|
|
[source.crates-io]
|
|
replace-with = "vendored-sources"
|
|
|
|
[source."git+https://github.com/salsa-rs/salsa.git"]
|
|
git = "https://github.com/salsa-rs/salsa.git"
|
|
replace-with = "vendored-sources"
|
|
|
|
[source.vendored-sources]
|
|
directory = "third-party/vendor" |