Skip to content

Commit

Permalink
proper types
Browse files Browse the repository at this point in the history
  • Loading branch information
akostylev0 committed Apr 9, 2024
1 parent b3eabfc commit feaec50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ton-liteserver-client/src/tl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ type Long = i64;
type Int128 = i128;

Check warning on line 12 in ton-liteserver-client/src/tl.rs

View workflow job for this annotation

GitHub Actions / clippy

type alias `Int128` is never used

warning: type alias `Int128` is never used --> ton-liteserver-client/src/tl.rs:12:6 | 12 | type Int128 = i128; | ^^^^^^
type Int256 = String;
type BoxedBool = bool;
type Bytes = String;
type Bytes = Vec<u8>;
type SecureString = String;

Check warning on line 16 in ton-liteserver-client/src/tl.rs

View workflow job for this annotation

GitHub Actions / clippy

type alias `SecureString` is never used

warning: type alias `SecureString` is never used --> ton-liteserver-client/src/tl.rs:16:6 | 16 | type SecureString = String; | ^^^^^^^^^^^^
type SecureBytes = String;
type SecureBytes = Vec<u8>;

Check warning on line 17 in ton-liteserver-client/src/tl.rs

View workflow job for this annotation

GitHub Actions / clippy

type alias `SecureBytes` is never used

warning: type alias `SecureBytes` is never used --> ton-liteserver-client/src/tl.rs:17:6 | 17 | type SecureBytes = Vec<u8>; | ^^^^^^^^^^^
type Vector<T> = Vec<T>;

include!(concat!(env!("OUT_DIR"), "/generated.rs"));

0 comments on commit feaec50

Please sign in to comment.