aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2021-11-25add Twisted Castle encounterDaniel Schadt
This requires evtclib 0.6.1, which is why the dependencies have been updated.
2021-11-19update evtclib to 0.6.0Daniel
Now that evtclib has been released with the features we need, we can upgrade and do away with the git dependency.
2021-11-17Better output for World vs. World logsDaniel Schadt
2021-11-12Update dependenciesDaniel
Only minor changes are needed.
2020-10-10bump version to 1.3.1Daniel
2020-10-10update dependenciesDaniel
2020-10-10update to evtclib 0.5.0Daniel
2020-10-04use Encounter::from_header_idDaniel
2020-10-04update to newest evtclibDaniel
There's a good chance that this will be evtclib 0.5, so we want to adapt our API usage (mainly replacing evtclib::Boss with evtclib::Encounter). The naming is a bit all over the place now, as we sometimes refer to bosses and sometimes to encounters, but I hope to make a sensible decision at *some point* about what we're actually doing here.
2020-10-04update dependenciesDaniel
2020-08-28update dependenciesDaniel
2020-07-24bump version to 1.3.0v1.3.0Daniel
2020-07-24update dependenciesDaniel
2020-06-07update dependenciesDaniel
2020-05-25update evtclib to 0.3.3Daniel
2020-05-16bump version to 1.2.0v1.2.0Daniel
2020-05-16update dependenciesDaniel
2020-05-12update evtclib to 0.3.2Daniel
2020-05-04bump version to 1.1.0v1.1.0Daniel
2020-05-04update evtclib to 0.3.1Daniel
2020-05-03evtclib: include as a dependency, not submoduleDaniel
With evtclib being on crates.io now (and generally, being available publicly through git), there is no longer a need to have a copy of the evtclib repository in this repository. The main reason was that evtclib was private when I started it, so the easiest way to include it was through a git submodule. That reason is no longer valid. If we really *need* to use the git version, it is also better to just point Cargo to the repository and let it deal with keeping the repository up-to-date, rather than using git submodules. This commit also updates Cargo.lock, so there is a bit of noise from also adding ctrlc as a dependency.
2020-04-29bump version to 1.0.2v1.0.2Daniel
2020-04-29update locked dependenciesDaniel
2020-04-26update raidgrep version in Cargo.lockv1.0.0Daniel
2020-04-26update locked dependenciesDaniel
2020-04-04update dependenciesDaniel
2018-10-15add time based filteringDaniel
This accepts timestamps in the following formats: * Human-readable, like "15d", taken relative to the current time. * rfc3339-like "2018-03-14 13:13:00" More formats might be added in the future.
2018-10-15properly use encounter ID to get the nameDaniel
The previous method was nice because it "just worked" for most of the bosses, but with the introduction of W6 shenanigans (CA being a gadget, and Largos Twins being two bosses), the method was a bit unreliable. Now, the encounter ID that is saved by ArcDPS is used, and a predefined list of encounter names is consulted, which makes this work better for most bosses and allows us to change the name when appropriate (Nightmare Oratuss -> Siax)
2018-09-14add Cargo.lockDaniel