···11+# This file contains settings for `cargo hakari`.
22+# See https://docs.rs/cargo-hakari/latest/cargo_hakari/config for a full list of options.
33+44+hakari-package = "advent-hack"
55+66+# Format version for hakari's output. Version 4 requires cargo-hakari 0.9.22 or above.
77+dep-format-version = "4"
88+99+# Setting workspace.resolver = "2" or higher in the root Cargo.toml is HIGHLY recommended.
1010+# Hakari works much better with the v2 resolver. (The v2 and v3 resolvers are identical from
1111+# hakari's perspective, so you're welcome to set either.)
1212+#
1313+# For more about the new feature resolver, see:
1414+# https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#cargos-new-feature-resolver
1515+resolver = "2"
1616+1717+# Add triples corresponding to platforms commonly used by developers here.
1818+# https://doc.rust-lang.org/rustc/platform-support.html
1919+platforms = [
2020+ "x86_64-unknown-linux-gnu",
2121+ # "x86_64-apple-darwin",
2222+ # "aarch64-apple-darwin",
2323+ # "x86_64-pc-windows-msvc",
2424+]
2525+2626+# Write out exact versions rather than a semver range. (Defaults to false.)
2727+# exact-versions = true
···11+# Avoid putting conflict markers in the generated Cargo.toml file, since their presence breaks
22+# Cargo.
33+# Also do not check out the file as CRLF on Windows, as that's what hakari needs.
44+Cargo.toml merge=binary -crlf
+17
advent-hack/Cargo.toml
···11+# This file is generated by `cargo hakari`.
22+# To regenerate, run:
33+# cargo hakari generate
44+55+[package]
66+name = "advent-hack"
77+version = "0.1.0"
88+edition = "2021"
99+description = "workspace-hack package, managed by hakari"
1010+# You can choose to publish this crate: see https://docs.rs/cargo-hakari/latest/cargo_hakari/publishing.
1111+publish = false
1212+1313+# The parts of the file between the BEGIN HAKARI SECTION and END HAKARI SECTION comments
1414+# are managed by hakari.
1515+1616+### BEGIN HAKARI SECTION
1717+### END HAKARI SECTION
+2
advent-hack/build.rs
···11+// A build script is required for cargo to consider build dependencies.
22+fn main() {}