aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)Author
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