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

Add Rustls compile time implementation #56

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Commits on Jul 24, 2024

  1. Configuration menu
    Copy the full SHA
    c271103 View commit details
    Browse the repository at this point in the history
  2. Run cargo fmt --all

    hargut committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    76b6a68 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b8183bb View commit details
    Browse the repository at this point in the history
  4. Fix clippy warning

    hargut committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    f56d04e View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2024

  1. fix: remove several Box types in handshake

    use generics instead as used within the original version
    remove trait implementations for Box<dyn IO + Send> as no longer required
    hargut committed Aug 27, 2024
    Configuration menu
    Copy the full SHA
    022252e View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Configuration menu
    Copy the full SHA
    97a3df7 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. fix: remove indirection in connectors:tls:Connector

     replace direct field access with getter method that
     returns &Arc<impl TlsConnectorContext>,
     store concrete type in now private struct field
    
    using impl Trait in return value keeps method signature
    stable across features; allows for static dispatch
    
     adjust visibility for TlsConnectorCtx structs from pub(crate) to pub(super)
    hargut committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    bc83020 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Configuration menu
    Copy the full SHA
    a42eaf1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b84ad21 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Configuration menu
    Copy the full SHA
    90a823a View commit details
    Browse the repository at this point in the history