lychee
lychee copied to clipboard
Bump the dependencies group across 1 directory with 8 updates
Bumps the dependencies group with 8 updates in the / directory:
Package | From | To |
---|---|---|
anyhow | 1.0.82 |
1.0.86 |
serde | 1.0.198 |
1.0.202 |
serde_json | 1.0.116 |
1.0.117 |
toml | 0.8.12 |
0.8.13 |
cached | 0.49.3 |
0.51.3 |
pulldown-cmark | 0.9.6 |
0.11.0 |
serde_with | 3.8.0 |
3.8.1 |
thiserror | 1.0.59 |
1.0.61 |
Updates anyhow
from 1.0.82 to 1.0.86
Release notes
Sourced from anyhow's releases.
1.0.86
- Fix parse error in
ensure!
with non-literal after minus sign (#373)1.0.85
1.0.84
- Disallow calling
ensure!
through aNot
impl for a type that is notbool
(#367)1.0.83
- Integrate compile-time checking of cfgs (#363)
Commits
8ea1819
Release 1.0.860a1b405
Merge pull request #373 from dtolnay/minusnege0c74f2
Ensure $:literal never matches negative literal013c66e
Fix parse error with non-literal after minus signca7aff7
Add binary operator ensure tests2737bbe
Release 1.0.8582b8b34
Merge pull request #371 from dtolnay/splitad78d70
Preserve more token spans in expression parser5cce406
Parse comparison operators before other binary operators7205394
Merge pull request #369 from dtolnay/tokensplit- Additional commits viewable in compare view
Updates serde
from 1.0.198 to 1.0.202
Release notes
Sourced from serde's releases.
v1.0.202
- Provide public access to RenameAllRules in serde_derive_internals (#2743)
v1.0.201
- Resolve unexpected_cfgs warning (#2737)
v1.0.200
- Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks
@jamessan
)v1.0.199
- Fix ambiguous associated item when
forward_to_deserialize_any!
is used on an enum withError
variant (#2732, thanks@aatifsyed
)
Commits
9e32a40
Release 1.0.20287f635e
Release serde_derive_internals 0.29.1d4b2dfb
Merge pull request #2743 from dtolnay/renameallrulesf6ab0bc
Provide public access to RenameAllRules in serde_derive_internals48cc2a6
Replace use of a syn From impl3202a68
Skip rerunning build script on library code changesb4f1bc1
Release 1.0.201029ab46
Merge pull request #2737 from dtolnay/checkcfg220ca0c
Resolve unexpected_cfgs warning20306f4
Fix cfg on test_systemtime_overflow- Additional commits viewable in compare view
Updates serde_json
from 1.0.116 to 1.0.117
Commits
Updates toml
from 0.8.12 to 0.8.13
Commits
912761b
chore: Release40b02a3
Merge pull request #730 from epage/msrv8eb5dcb
fix: Drop MSRV to 1.65f9249d8
Merge pull request #726 from mistydemeo/fix_typo1e3e033
docs: fix typoadbc75b
chore(deps): Update Rust Stable to v1.78 (#724)f8b1b26
Merge pull request #725 from epage/update7eef906
style: Address warnings813ce3d
chore(deps): Update compatible (dev) (#723)66f7f1a
docs: Remove stale content from examples- Additional commits viewable in compare view
Updates cached
from 0.49.3 to 0.51.3
Changelog
Sourced from cached's changelog.
[0.51.3]
Added
ExpiringSizedCache
: Allow specifying explicit TTL when insertingChanged
- Refactor
ExpiringSizedCache
internals to not require tombstonesExpiringSizedCache
keys must implOrd
ExpiringSizedCache
remove
andinsert
updated to return only unexpired valuesRemoved
[0.51.2]
Added
- Add
get_borrowed
methods toExpiringSizedCache
to support cache retrieval using&str
/&[T]
when the key types areString
/Vec<T>
. This is a workaround for issues implementingBorrow
for a generic wrapper type.Changed
Removed
[0.51.1]
Added
- Update documentation and add missing methods to
ExpiringSizedCache
(clear, configuration methods)Changed
ExpiringSizedCache
: When allocating usingwith_capacity
, allocate enough space to account for the default max number of tombstone entriesRemoved
[0.51.0]
Added
- Add
ExpiringSizedCache
intended for high read scenarios. Currently incompatible with the cached trait and macros.Changed
Removed
[0.50.0 / [cached_proc_macro[0.21.0]] ]
Added
- Add
DiskCacheBuilder::set_sync_to_disk_on_cache_change
to specify that the cache changes should be written to disk on every cache change.- Add
sync_to_disk_on_cache_change
to#[io_cached]
to allow settingDiskCacheBuilder::set_sync_to_disk_on_cache_change
from the proc macro.- Add
DiskCacheBuilder::set_connection_config
to give more control over the sled connection.- Add
connection_config
to#[io_cached]
to allow settingDiskCacheBuilder::set_connection_config
from the proc macro.- Add
DiskCache::connection()
andDiskCache::connection_mut()
to give access to the underlying sled connection.- Add
cache_unset_lifespan
to cached traits for un-setting expiration on types that support itChanged
- [Breaking]
type
attribute is nowty
- Upgrade to syn2
- Corrected a typo in DiskCacheError (de)serialization variants
- Signature or
DiskCache::remove_expired_entries
: this now returnsResult<(), DiskCacheError>
instead of()
, returning anErr(sled::Error)
on removing and flushing from the connection.Removed
Commits
- See full diff in compare view
Updates pulldown-cmark
from 0.9.6 to 0.11.0
Release notes
Sourced from pulldown-cmark's releases.
0.11.0
Finally, the so long awaited math mode is here! Enable the option to use it.
This release also includes other improvements and bugfixes, please see the changelog below for more details. Thanks to all contributors that has made possible this release!
Breaking changes
- Change
write_to_html
to allowfmt::Write
by@stepantubanov
in pulldown-cmark/pulldown-cmark#870New features
- Math mode
Bugfixes
- [0.11] Don't exit
scan_attribute
with the ix pointing at block quote by@notriddle
in pulldown-cmark/pulldown-cmark#873- (Re)introduce simd feature to pulldown-cmark-escape by
@ollpu
in pulldown-cmark/pulldown-cmark#880- fix: remove unnecessary end_newline set by
@tomcur
in pulldown-cmark/pulldown-cmark#885New Contributors
@duskmoon314
made their first contribution in pulldown-cmark/pulldown-cmark#874@stepantubanov
made their first contribution in pulldown-cmark/pulldown-cmark#870@tomcur
made their first contribution in pulldown-cmark/pulldown-cmark#885Full Changelog: https://github.com/pulldown-cmark/pulldown-cmark/compare/v0.10.3...v0.11.0
v0.10.3
The main change of this release is the
simd
feature was not being used in the escape functions since the version 0.10 due to a mistake during the separation of the cratepulldown-cmark-escape
.The crate
pulldown-cmark-escape
has been updated to the version 0.10.1.What's Changed
- fix: fix dead code warning from nightly compiler by
@rhysd
in pulldown-cmark/pulldown-cmark#876- Eat all spaces after line break in link title by
@notriddle
in pulldown-cmark/pulldown-cmark#877- Mark
Rule
as a block item by@notriddle
in pulldown-cmark/pulldown-cmark#879Full Changelog: https://github.com/pulldown-cmark/pulldown-cmark/compare/v0.10.2...v0.10.3
v0.10.2
New release with some fixes and improvements. Note the 0.10.1 is missing (yanked from crates.io) due to a conflict with the clap version and the Rust minimum version (1.74 now instead of 1.70).
Thanks to all people that contributed to this release!
What's Changed
- Limit link def expansion by
@notriddle
in pulldown-cmark/pulldown-cmark#845- Do not look for HTML tags that start with backslash by
@notriddle
in pulldown-cmark/pulldown-cmark#849- Count a blank line at end of indented code block towards list by
@notriddle
in pulldown-cmark/pulldown-cmark#851- Use same limit for refdef as inline links by
@notriddle
in pulldown-cmark/pulldown-cmark#854- Don't exit
scan_attribute
with the ix pointing at block quote by@notriddle
in pulldown-cmark/pulldown-cmark#858- Check indentation on the closing fence relative to the line by
@notriddle
in pulldown-cmark/pulldown-cmark#862- Adjust strikethrough flanking rule to better fit Rustdoc Crater run by
@notriddle
in pulldown-cmark/pulldown-cmark#864
... (truncated)
Commits
d7632ac
chore: update version to 0.11.0 and Cargo.lock57b6b3f
Merge pull request #887 from pulldown-cmark/branch_0.117137d4e
Merge branch 'master' into branch_0.11a9a6ed7
Merge pull request #885 from tomcur/remove-unnecessary-set8fde095
fix: remove unnecessary end_newline set1cfaf02
fix: simd was not be using after the new crate pulldown-cmark-escape056c9e1
Merge pull request #880 from ollpu/escape-simd7316da2
(Re)introduce simd feature to escape crateeac0027
Merge pull request #879 from notriddle/notriddle/rule-emphd26e07f
MarkRule
as a block item- Additional commits viewable in compare view
Updates serde_with
from 3.8.0 to 3.8.1
Release notes
Sourced from serde_with's releases.
serde_with v3.8.1
Fixed
- Do not emit
schemars(deserialize_with = "...")
annotations, asschemars
does not support them (#735) Thanks to@sivizius
for reporting the issue.
Commits
Updates thiserror
from 1.0.59 to 1.0.61
Release notes
Sourced from thiserror's releases.
1.0.61
1.0.60
- Resolve unexpected_cfgs warning (#298)
Commits
5c80163
Release 1.0.61e3b1b91
Format PR 299 with rustfmt6b2b871
Merge pull request #299 from quartiq/corece974bc
also {std -> core}::panic::UnwindSafe7b6e35b
use core::fmt instead of std::fmt870d11b
Release 1.0.600ccee7c
Merge pull request #298 from dtolnay/checkcfgcf43d0c
Resolve unexpected_cfgs warning- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions