Skip to content

Commit

Permalink
fix lint and build
Browse files Browse the repository at this point in the history
  • Loading branch information
youyuanwu committed Nov 19, 2023
1 parent bdeb6c8 commit 13400bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions crates/fabric/ext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// license information.
// ------------------------------------------------------------

#![allow(non_snake_case)]

// lib that contains all common extensions for the raw fabric apis.

pub mod fasync;
Expand Down
10 changes: 6 additions & 4 deletions crates/samples/echomain/src/app.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
use std::cell::Cell;
use std::io::Error;
use std::thread::JoinHandle;
use std::{convert::TryInto, ptr::null};
// ------------------------------------------------------------
// Copyright 2022 Youyuan Wu
// Licensed under the MIT License (MIT). See License.txt in the repo root for
// license information.
// ------------------------------------------------------------
#![allow(non_snake_case)]

use std::cell::Cell;
use std::io::Error;
use std::thread::JoinHandle;
use std::{convert::TryInto, ptr::null};

use fabric_ext::{AsyncContext, StringResult};
use log::info;
Expand Down

0 comments on commit 13400bc

Please sign in to comment.