Skip to content

Commit

Permalink
Migrate to async client, add tower support (#9)
Browse files Browse the repository at this point in the history
* start refactoring

* work on request/response TL serialization

* work on server

* work on encoding to use with tokio-tower

* upd tl

* upd

* remove codec

* upd

* update adnl, add layers

* Update Cargo.toml

* Update Cargo.toml

* Add getBlockHeader flags

* Add more logging

* Add tcp.ping message type, make error wrapper work with request/response services instead of message

* int -> uint for all fields which not require negative values

* int -> uint

* Add Eq + Hash to BlockIdExt

* impl Hash for Int256

* Add seqno flag for LookupBlock

* Add debug logs

* Add block header modes for LookupBlock

* Add GetConfigParams, GetConfigAll, ConfigInfo modes

* Update config flags

* Add flags for GetBlockProof

* Support getLibraries method (#6)

* Support getLibraries

* Update github-ci

---------

Co-authored-by: Dmitrii Korchagin <[email protected]>

* Add LiteClient

* Reimplement cli

* Add GetLibraries and custom liteserver opts

---------

Co-authored-by: Sild <[email protected]>
Co-authored-by: Dmitrii Korchagin <[email protected]>
  • Loading branch information
3 people authored Oct 3, 2024
1 parent f18a4f1 commit 1a7942b
Show file tree
Hide file tree
Showing 27 changed files with 3,299 additions and 3,332 deletions.
52 changes: 4 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on: [push, pull_request]
name: Continuous integration

jobs:
check:
name: Check
build:
name: Build liteapi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,50 +15,6 @@ jobs:
override: true
- uses: actions-rs/cargo@v1
with:
command: check
command: build
args: --manifest-path=liteapi/Cargo.toml

# test:
# name: Test Suite
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: stable
# override: true
# - uses: actions-rs/cargo@v1
# with:
# command: test

fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
Loading

0 comments on commit 1a7942b

Please sign in to comment.