Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: split crates into multiple to isolate breaking changes #272

Merged
merged 39 commits into from
Apr 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7f3c30d
Initial split of crates
thomaseizinger Jan 31, 2023
3932079
Deprecate export of `Multihash`
thomaseizinger Jan 31, 2023
8ca3071
inline synstructure macro
thomaseizinger Jan 31, 2023
91f96c6
Deprecate old macro name in favor of new one
thomaseizinger Jan 31, 2023
d0e8215
Remove `derive` feature flag
thomaseizinger Jan 31, 2023
bcf8135
Remove unnecessary `pub` qualifier
thomaseizinger Jan 31, 2023
9cee44e
Remove unnecessary feature-gated import
thomaseizinger Jan 31, 2023
c1e5355
Deprecate `serde-codec`
thomaseizinger Jan 31, 2023
2dbeded
Remove git blame file
thomaseizinger Jan 31, 2023
f3a4c8b
Run rustfmt
thomaseizinger Mar 21, 2023
d9aa346
Reduce number of `cfg`s
thomaseizinger Mar 21, 2023
2bc4101
Remove `Result` type
thomaseizinger Mar 21, 2023
2a96940
Make `Error` opaque
thomaseizinger Mar 21, 2023
aab78df
Introduce `multihash-derive-impl` crate
thomaseizinger Mar 21, 2023
e2e2229
Fix clippy lint
thomaseizinger Mar 21, 2023
c32ce92
Only build multihash for no_std
thomaseizinger Mar 21, 2023
cb0d728
Update docs
thomaseizinger Mar 21, 2023
abbb7eb
Update docs for multihash-codetable
thomaseizinger Mar 21, 2023
c502465
Remove outdated docs
thomaseizinger Mar 21, 2023
e67be12
Replace macro tests with trybuild
thomaseizinger Mar 21, 2023
4d3048c
Remove unused feature `std` from `multihash`
thomaseizinger Mar 21, 2023
5a97fdc
Export deprecated macro name
thomaseizinger Mar 21, 2023
0b85ce9
Reduce diff
thomaseizinger Mar 21, 2023
960ec0e
Minimize diff and fix cargo metadata
thomaseizinger Mar 21, 2023
72601b1
Minimize diff
thomaseizinger Mar 21, 2023
b25bfcb
Remove `extern crate core`
thomaseizinger Mar 22, 2023
c0925a8
Use `dep:` consistently
thomaseizinger Mar 22, 2023
0cb5c77
Use uniform way of referring to error type
thomaseizinger Mar 22, 2023
55759e5
Make everything work on `no_std` again
thomaseizinger Mar 22, 2023
9a679cc
Add back serde support for `Code`
thomaseizinger Mar 22, 2023
c44bfb2
Reintroduce feature-flags in `multihash-codetable`
thomaseizinger Mar 22, 2023
40ea00c
Only use `serde` feature flag
thomaseizinger Mar 23, 2023
eb955f2
Restore old feature flags
thomaseizinger Mar 23, 2023
4f4e34d
Merge imports
thomaseizinger Mar 23, 2023
65b2ebc
Remove unnecessary qualification
thomaseizinger Mar 23, 2023
efc5caa
Restore identity hasher
thomaseizinger Mar 29, 2023
d48ac2c
Correctly feature-gate export
thomaseizinger Mar 29, 2023
b73894c
Replace imports with full-qualified references to avoid `cfg`s
thomaseizinger Mar 30, 2023
f5e46ca
Fix test
thomaseizinger Mar 30, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Export deprecated macro name
  • Loading branch information
thomaseizinger committed Mar 21, 2023
commit 5a97fdc129d4a6dad94d2377d8640c55eb75b1c5
1 change: 1 addition & 0 deletions derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ pub use hasher::Hasher;
pub use multihash::Error;
pub use multihash::Multihash;
#[doc(inline)]
pub use multihash_derive_impl::Multihash; // This one is deprecated.
pub use multihash_derive_impl::MultihashDigest;

/// The given code is not supported by this codetable.
Expand Down