Update CI/Cargo.toml references to 0.0.122
[ldk-c-bindings] / c-bindings-gen / src /
2024-01-25 Matt CoralloMerge pull request #117 from TheBlueMatt/main v0.0.121.0
2024-01-23 Matt CoralloAdd support for resolving 33-byte arrays, though its...
2024-01-23 Matt CoralloIgnore `Debug` bounds on generics which may be redundant
2024-01-23 Matt CoralloUse resolved-type matching rather than as-written in...
2024-01-23 Matt CoralloUpdate rust-bitcoin wrappers to latest rust-bitcoin...
2024-01-23 Matt CoralloIgnore `Send` and `Sync` bounds when resolving generics
2024-01-23 Matt CoralloAdd support for implementing traits with a `Debug`...
2023-12-29 Matt CoralloSupport passing lifetime'd enums to C
2023-10-27 Matt CoralloMerge pull request #114 from TheBlueMatt/main v0.0.118.0
2023-10-24 Matt CoralloSupport trait impls on enums
2023-10-23 Matt CoralloCorrect manual conversion for `ChainHash`
2023-10-16 Matt CoralloDrop `#[no_mangle]` from `*_write_void` to make cbindge...
2023-10-09 Matt CoralloMerge pull request #113 from TheBlueMatt/main v0.0.117.1
2023-10-08 Matt CoralloUpdate args on supertraits of supertraits when cloning...
2023-10-08 Matt CoralloDrop unused parameter from `get_module_type_resolver`
2023-10-06 Matt CoralloMerge pull request #112 from TheBlueMatt/main v0.0.117.0
2023-10-04 Matt CoralloInclude argument info docs on all-pub struct constructors
2023-10-04 Matt CoralloUpdate hardcoded and manually-defined types for LDK...
2023-10-04 Matt CoralloDrop `#[no_mangle]`/`extern` flag for internal-only...
2023-10-04 Matt CoralloDrop `empty_val_check_suffix_from_path` for Signature...
2023-10-04 Matt CoralloHandle type references which refer to a module defined...
2023-10-04 Matt CoralloPrint fewer types in call generics, leaning on rustc...
2023-10-04 Matt CoralloUse the resolved type name in generic strings, not...
2023-10-04 Matt CoralloHandle `Deref<Self::Type>` bounds as `Self::Type`'s...
2023-09-28 Matt CoralloAccept `DerefMut` bounds on generics as if they were...
2023-09-26 Matt CoralloSupport `f64` as a primitive type
2023-09-26 Matt Coralloimpl `DerefMut` for all traits
2023-09-26 Matt CoralloAllow `Sized` bounds
2023-09-26 Matt CoralloInclude `String` in the default import, since we use...
2023-07-31 Matt CoralloMerge pull request #110 from TheBlueMatt/main v0.0.116.0
2023-07-30 Matt CoralloUpdate hard-coded types and add some new manual bitcoin...
2023-07-28 Matt CoralloAllow generation of manual types in reference options
2023-07-28 Matt CoralloHandle all traits in type resolution, including no...
2023-07-28 Matt CoralloHandle no-export traits which are only implemented...
2023-07-28 Matt CoralloSupport Unit struct types
2023-07-28 Matt CoralloAllow `?Sized` bounds in some cases
2023-07-28 Matt CoralloDrop special handling for more Option types and all...
2023-07-28 Matt CoralloCorrect `use` resolution for submodule use statements
2023-07-28 Matt CoralloDrop `#[must_use]` that rustc complains is ignored
2023-07-28 Matt CoralloMerge pull request #111 from TheBlueMatt/2023-07-0... v0.0.115.3
2023-07-28 Matt CoralloFix strict-aliasing violation on traits holding inner...
2023-05-31 Matt CoralloMerge pull request #106 from TheBlueMatt/main v0.0.115.1
2023-05-31 Matt CoralloMake `BitEndianScalar` clonable
2023-04-26 Matt CoralloMerge pull request #103 from TheBlueMatt/main v0.0.115.0
2023-04-26 Matt CoralloEnsure an option always unwraps to a non-reference...
2023-04-26 Matt CoralloHandle Option<Vec<_>> with a much cleaner option converter
2023-04-26 Matt CoralloHandle use of `#[doc]` in the original source
2023-04-26 Matt CoralloReplace type resolution assertions with failures
2023-04-26 Matt CoralloUpdate hard-coded type definitions
2023-04-17 Matt CoralloFix documentation on generated _hash methods for std...
2023-04-17 Matt CoralloSupport the new no-exported tag that is more human...
2023-03-07 Matt CoralloMerge pull request #100 from TheBlueMatt/main v0.0.114.0
2023-03-06 Matt CoralloSupport new rust-bitcoin type mappings for various...
2023-03-06 Matt CoralloIgnore discriminants on enum variants
2023-03-06 Matt CoralloSupport tuples containing array elements
2023-03-06 Matt CoralloAdd type for 8 u16s (which is used for the scoring...
2023-03-06 Matt CoralloSupport non-u8 (primitive) arrays
2023-03-06 Matt CoralloSupport supertraits-of-supertraits
2023-03-06 Matt CoralloFix typo in path resolution leading to a "crate name...
2023-02-27 Matt CoralloSupport passing `Option<&OpaqueStruct>` to C
2023-01-10 Matt CoralloMerge pull request #96 from TheBlueMatt/main v0.0.113.0
2023-01-03 Matt CoralloSupport new upstream manually-mapped types
2023-01-03 Matt CoralloAdd support for witnesses via a manual mapping
2023-01-03 Matt CoralloSupport u128 values
2022-12-24 Matt CoralloUse the resolved name, not original ident, for Vec...
2022-12-24 Matt CoralloIgnore async functions as mapping them would be substan...
2022-12-24 Matt CoralloAllow enums with lifetime-only generics
2022-12-24 Matt CoralloUse `Clone::clone(a)` rather than `a.clone` to avoid...
2022-12-23 Matt CoralloSome initial support for `pub(.*) use` aliasing in...
2022-10-28 Matt CoralloMake rustc stop complaining about unused `Box::from_raw`s
2022-10-28 Matt CoralloMerge pull request #94 from TheBlueMatt/main v0.0.112.0
2022-10-28 Matt CoralloMap `io::ErrorKind` the same as `io::Error`, we only...
2022-10-28 Matt CoralloHandle path types that start with `crate::`
2022-10-28 Matt CoralloHandle multiple `impl`s of the same trait in the same...
2022-10-28 Matt Corallo(Partially) support supertraits with generic bounds
2022-10-03 ArikMerge pull request #91 from TheBlueMatt/main
2022-09-25 Matt CoralloAdd Scalar and SharedSecret type mappings for new secp2...
2022-09-23 Matt CoralloAllow liftime bounds on generic bounds
2022-09-23 Matt CoralloDon't use a turbofish when all parameters are lifetimes.
2022-09-23 Matt CoralloUse trait, not impl, definition for X_as_Trait functions
2022-09-23 Matt CoralloSupport mapping `Readable` `impl`s outside of the ...
2022-09-23 Matt CoralloPrefer `Option_` mappings for more types over transpare...
2022-08-04 Matt CoralloMerge pull request #88 from TheBlueMatt/main
2022-08-03 Matt CoralloTry clone'ing the field before skipping exporting a...
2022-07-01 Matt CoralloMerge pull request #84 from TheBlueMatt/main v0.0.109.0
2022-07-01 Matt CoralloSupport `&[[u8; N]]` passed to Rust.
2022-07-01 Matt CoralloSupport `Option<Tuple>` with elements in the tuple
2022-06-28 Matt CoralloMerge pull request #81 from TheBlueMatt/main v0.0.108.0
2022-06-28 Matt CoralloAdd locally defined crates as "dependencies" without...
2022-06-28 Matt CoralloSupport `Option<Trait>` (and `Option<&Trait>`, implemen...
2022-06-28 Matt CoralloUse new `Type`-based resolution to decide if a containe...
2022-06-28 Matt CoralloUse new `Type`-based generic resolution in `write_rust_...
2022-06-28 Matt CoralloPass `with_ref_lifetime` through to rust-type-printing...
2022-06-28 Matt CoralloCheck whether the fields of an enum are clonable before...
2022-06-28 Matt CoralloDo a second initial-walk pass to apply clonable flags...
2022-06-28 Matt CoralloMove code to map aliased types into a virtual impl...
2022-06-28 Matt CoralloGenerate mutable references in `default_generics` when...
2022-06-28 Matt CoralloMove overly-specific check to an assertion where its...
2022-06-28 Matt CoralloDo not make `Deref<T>` generic params always a `&T...
2022-06-28 Matt CoralloPrint field documentation even for unnamed enum variant...
next