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

Migration to 0.3 & Async/Await #582

Closed
wants to merge 38 commits into from
Closed

Commits on Dec 30, 2019

  1. Configuration menu
    Copy the full SHA
    8f4b917 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67095a3 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2020

  1. Configuration menu
    Copy the full SHA
    e96d71b View commit details
    Browse the repository at this point in the history
  2. feat(service): remove boxes

    gakonst committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    fbf0ab1 View commit details
    Browse the repository at this point in the history
  3. feat(service): remove boxes

    gakonst committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    b35da6b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5a3f36b View commit details
    Browse the repository at this point in the history
  5. chore: update cargo.lock

    gakonst committed Jan 2, 2020
    Configuration menu
    Copy the full SHA
    9ef91f7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2a02842 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2020

  1. Configuration menu
    Copy the full SHA
    d335f4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    680a83e View commit details
    Browse the repository at this point in the history
  3. feat(http): Get ILP over HTTP working + tests

    Note that we had to add a "Send" restriction on the error types of
    interledger-packet to work around "the trait `std::marker::Send` is not
    implemented for `(dyn std::error::Error + 'static)`"
    gakonst committed Jan 3, 2020
    Configuration menu
    Copy the full SHA
    26c82b4 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. Configuration menu
    Copy the full SHA
    bdb283d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b5a39f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    22d2aac View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2020

  1. Configuration menu
    Copy the full SHA
    3ff26ae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44f65a1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c60e39 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4734309 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2020

  1. fix(ccp): fix Mutex errors

    Write locks should not be in the same scope as await'ed futures.
    We fix this by scoping the write lock for as long as needed, and
    then yield only the result of the computation. When the scope is over,
    the lock gets dropped, so we can safely use the future.
    gakonst committed Jan 8, 2020
    Configuration menu
    Copy the full SHA
    738b606 View commit details
    Browse the repository at this point in the history
  2. feat(btp): move to futures 0.3 and async/await

    WIP. Need to fix the Server (warp does not support tungstenite yet), and
    the Client's add_connection method is commented out still
    gakonst committed Jan 8, 2020
    Configuration menu
    Copy the full SHA
    3f1819c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3adeacb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b9488ad View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2020

  1. Configuration menu
    Copy the full SHA
    fb0722c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    737c044 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2020

  1. fix(service): refactor wrapped services to accept futures

    async fn -> IlpResult desugars to fn -> Future<Output = IlpResult
    gakonst committed Jan 10, 2020
    Configuration menu
    Copy the full SHA
    d6e9fef View commit details
    Browse the repository at this point in the history
  2. fix(api/btp/util): Re-enable unimplemented functions

    Note: exchange rate service does not compile on 1.39, but compiles on nightly. Why?
    gakonst committed Jan 10, 2020
    Configuration menu
    Copy the full SHA
    f831435 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    10f4cd0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d98f190 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eec3843 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3f7f6a8 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2020

  1. Configuration menu
    Copy the full SHA
    d316689 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e301c5 View commit details
    Browse the repository at this point in the history
  3. fix(ccp): clippy lints

    gakonst committed Jan 13, 2020
    Configuration menu
    Copy the full SHA
    d7437fe View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8674b1f View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2020

  1. Configuration menu
    Copy the full SHA
    b9a90c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    22fb5ba View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a70382 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f8a83e7 View commit details
    Browse the repository at this point in the history