<feed xmlns='http://www.w3.org/2005/Atom'>
<title>azalea-drasl.git/azalea/build.rs, branch main</title>
<subtitle> Fork of azalea that adds support for authentication over Drasl/Yggdrasil.
</subtitle>
<id>https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/atom?h=main</id>
<link rel='self' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/'/>
<updated>2026-01-29T19:02:36+00:00</updated>
<entry>
<title>warn if pathfinder is running without optimizations, and other minor fixes</title>
<updated>2026-01-29T19:02:36+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2026-01-29T19:02:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=6c0be6913dd0bcbb7e17a3e2a4daa45fcc8f5103'/>
<id>urn:sha1:6c0be6913dd0bcbb7e17a3e2a4daa45fcc8f5103</id>
<content type='text'>
</content>
</entry>
<entry>
<title>formatting: merge imports</title>
<updated>2025-05-31T03:44:48+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2025-05-31T03:44:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=e37524899eef8a0034faee35cef4bbf1ba779a7d'/>
<id>urn:sha1:e37524899eef8a0034faee35cef4bbf1ba779a7d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update to rust edition 2024</title>
<updated>2025-02-22T23:01:54+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2025-02-22T23:01:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=34f53baf85fb5c7163ec5d71a8ab9d45d3f271b6'/>
<id>urn:sha1:34f53baf85fb5c7163ec5d71a8ab9d45d3f271b6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update Bevy and migrate to workspace dependencies and package attributes (#181)</title>
<updated>2024-12-05T00:31:22+00:00</updated>
<author>
<name>EightFactorial</name>
<email>29801334+EightFactorial@users.noreply.github.com</email>
</author>
<published>2024-12-05T00:31:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=6379035b852f1b619565d27f5cee3b93042c2312'/>
<id>urn:sha1:6379035b852f1b619565d27f5cee3b93042c2312</id>
<content type='text'>
* Use workspace `Cargo.toml` for dependencies and package atributes

* Fix a couple clippy warnings

* Update bevy, update build script, move deps to workspace, and fix clippy warnings

* Remove carrots from crate versions
The default behavior is the same

* Remove unused dependencies
Compiles and all tests pass, so it should be fine

* Update codegen to use `std::sync::LazyLock` instead of `once_cell::sync::Lazy`

* Update Bevy to `0.15.0-rc.3`
Surprisingly little needed to be changed

* Update to bevy 0.15.0

* Fix leftover merge issues

* Clarify the reason the swarm can't connect

* Fix duplicate lint, remove `log` dependency</content>
</entry>
<entry>
<title>fix ClientboundLevelParticlesPacket errors and pathfinder /particle errors</title>
<updated>2024-08-15T01:24:03+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2024-08-15T01:24:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=dec544a52ba738e2d0e2c3a042e5ccc0cb336ffb'/>
<id>urn:sha1:dec544a52ba738e2d0e2c3a042e5ccc0cb336ffb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fmt</title>
<updated>2024-08-11T09:03:57+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2024-08-11T09:03:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=5ab9c501e93907a8a688266fd027a48bbf1c2eca'/>
<id>urn:sha1:5ab9c501e93907a8a688266fd027a48bbf1c2eca</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Determine rust channel by parsing rustc output if env vars do not exist (#163)</title>
<updated>2024-07-19T21:28:40+00:00</updated>
<author>
<name>Patrick</name>
<email>paddi@cryne.me</email>
</author>
<published>2024-07-19T21:28:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=4ee0b784ea26156445711e605055b7406591621e'/>
<id>urn:sha1:4ee0b784ea26156445711e605055b7406591621e</id>
<content type='text'>
* Determine rust channel by parsing rustc output

The RUSTUP_TOOLCHAIN environment variable might not always be present.
This is the case for e.g. NixOS where rust is routinely not installed via
rustup, thus not setting this env var, causing build failures.
Instead, build.rs will now run `rustc -V` and check if the output contains the
word "nightly".

* Check env vars first, fall back to rustc in $PATH

* Try to check RUSTUP_TOOLCHAIN first</content>
</entry>
<entry>
<title>show error if user is on stable rust</title>
<updated>2023-11-18T06:52:54+00:00</updated>
<author>
<name>mat</name>
<email>git@matdoes.dev</email>
</author>
<published>2023-11-18T06:52:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vlhl.dev/lizzy/cli/azalea-drasl.git/commit/?id=b79ae025f08935044c621259d4e0c4bb72bbcd7f'/>
<id>urn:sha1:b79ae025f08935044c621259d4e0c4bb72bbcd7f</id>
<content type='text'>
</content>
</entry>
</feed>
