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

Syncnew #2

Merged
merged 29 commits into from
Jun 8, 2023
Merged

Syncnew #2

merged 29 commits into from
Jun 8, 2023

Commits on Dec 20, 2022

  1. Allow file descriptor be generated without --include_source_info (tok…

    …io-rs#786)
    
    * Allow file descriptor be generated without --include_source_info
    
    The file descriptor sets generated by rules_proto in bazel don't have
    this by default, so this allows some flexibility for users to reuse
    results that are already available to them.  It's fairly trivial
    adjustment so it seemed reasonable to me to allow the flexibility.
    
    * revert breaking changes and add default
    dfreese authored Dec 20, 2022
    Configuration menu
    Copy the full SHA
    9dd92be View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3081a48 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14ac71e View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

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

Commits on Jan 17, 2023

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

Commits on Feb 2, 2023

  1. Configuration menu
    Copy the full SHA
    963a2cf View commit details
    Browse the repository at this point in the history
  2. Fix issue with negative nanos in Duration::try_from(), and add tests (t…

    …okio-rs#803)
    
    * Fix issue with negative nanos in Duration::try_from(), and add a unit test
    
    * add proptest for negative nanos
    
    * PR comment: remove spurious dbg
    danielsn authored Feb 2, 2023
    Configuration menu
    Copy the full SHA
    c00da0b View commit details
    Browse the repository at this point in the history
  3. Prevent spurious overflow in check_duration_roundtrip test (tokio-rs#804

    )
    
    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    danielsn and LucioFranco authored Feb 2, 2023
    Configuration menu
    Copy the full SHA
    bff66a6 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. Configuration menu
    Copy the full SHA
    49c33f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0c350dc View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2023

  1. Configuration menu
    Copy the full SHA
    db1c936 View commit details
    Browse the repository at this point in the history
  2. chore: Update github action (tokio-rs#815)

    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    tottoto and LucioFranco authored Feb 9, 2023
    Configuration menu
    Copy the full SHA
    6ddef5e View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2023

  1. Configuration menu
    Copy the full SHA
    597a54b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    83382aa View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2023

  1. feat: Added try_normalize to Timestamp (tokio-rs#796)

    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    oliverbrowneprima and LucioFranco authored Feb 13, 2023
    Configuration menu
    Copy the full SHA
    a21cf6b View commit details
    Browse the repository at this point in the history
  2. Update PropProof docs to note the need to submodule init (tokio-rs#805)

    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    danielsn and LucioFranco authored Feb 13, 2023
    Configuration menu
    Copy the full SHA
    b845e69 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2023

  1. feat(build): Add direct fds compile support (tokio-rs#819)

    This commit adds two new compile functions that allow passing a
    `FileDescriptorSet` and it will generate the Rust code. This allows
    users to use libraries like `protox` directly and in an ergonomic way.
    LucioFranco authored Feb 17, 2023
    Configuration menu
    Copy the full SHA
    e895d4c View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

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

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    0f53e3d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a02e4d View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2023

  1. Add existing roundtrip test to Kani CI and avoid recursive submoduling (

    tokio-rs#828)
    
    * Add existing roundtrip test to Kani CI
    
    * Bump up Kani version
    
    * Remove `v` from GA version
    adpaco-aws authored Mar 13, 2023
    Configuration menu
    Copy the full SHA
    8754050 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2023

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

Commits on Apr 3, 2023

  1. Fix corrupted tests and missing CI testing (tokio-rs#832)

    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    ldm0 and LucioFranco authored Apr 3, 2023
    Configuration menu
    Copy the full SHA
    a4f5992 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

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

Commits on Apr 10, 2023

  1. Fix build in directory not named prost (tokio-rs#839)

    This library will fail to build with the following error when checked
    out into a directory not named exactly `prost`:
    
      error: failed to load manifest for workspace member `/home/alex/src/prost-rs/tests/single-include`
    
      Caused by:
        failed to load manifest for dependency `prost`
    
      Caused by:
        failed to read `/home/alex/src/prost/Cargo.toml`
    
      Caused by:
        No such file or directory (os error 2)
    
    This is because the `single-include` test depends on `prost` with the
    path `../../../prost`. This patch fixes the issue by correcting the path
    to `../..`.
    3541 authored Apr 10, 2023
    Configuration menu
    Copy the full SHA
    f63691b View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2023

  1. prost-build: support boxing fields (tokio-rs#802)

    This allows the user to request boxing of specific fields. This is useful for
    enum types that might have variants of very different size.
    krallin authored Apr 12, 2023
    Configuration menu
    Copy the full SHA
    6b5516a View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2023

  1. chore: Update to baptiste0928/cargo-install@v2 (tokio-rs#840)

    Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
    tottoto and LucioFranco authored Apr 19, 2023
    Configuration menu
    Copy the full SHA
    1b105ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2037251 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2023

  1. Merge remote-tracking branch 'upstream/master' into syncnew

    # Conflicts:
    #	.github/workflows/continuous-integration-workflow.yaml
    #	Cargo.toml
    #	prost-build/src/lib.rs
    Jasperav committed Jun 8, 2023
    Configuration menu
    Copy the full SHA
    c50f714 View commit details
    Browse the repository at this point in the history