Skip to content

Commit

Permalink
fix: added file options arg source
Browse files Browse the repository at this point in the history
  • Loading branch information
juicycleff committed Jan 3, 2024
1 parent 7828974 commit e3ede02
Show file tree
Hide file tree
Showing 27 changed files with 1,277 additions and 477 deletions.
445 changes: 275 additions & 170 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/north-common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ pub mod loadbalancer;
pub mod macros;
pub mod prelude;
pub mod registry;
pub mod utils;
pub mod state;
pub mod utils;
7 changes: 3 additions & 4 deletions crates/north-common/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pub trait NorthStateDataClone {
}

impl<T> NorthStateDataClone for T
where
T: 'static + NorthStateData + Clone,
where
T: 'static + NorthStateData + Clone,
{
fn clone_box(&self) -> Box<dyn NorthStateData> {
Box::new(self.clone())
Expand All @@ -19,5 +19,4 @@ impl Clone for Box<dyn NorthStateData> {
}
}

pub trait NorthStateData: NorthStateDataClone + Send + Sync {
}
pub trait NorthStateData: NorthStateDataClone + Send + Sync {}
12 changes: 6 additions & 6 deletions crates/north-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ default = []
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
log = { workspace = true }
dotenvy = "0.15"
dotenvy = "0.15.7"
econf = "0.2.1"
notify = "6.0"
notify = "6.1.1"
json_dotpath = "1.1"
convert_case = "0.6"
async-trait = { version = "0.1" }
async-trait = { version = "0.1.77" }

tokio = { workspace = true, optional = true, features = ["fs", "io-util"] }
async-std = { version = "1.12", optional = true }

serde_yaml = { workspace = true, optional = true }
ron = { version ="0.8", optional = true }
toml = { version = "0.7", optional = true }
ron = { version ="0.8.1", optional = true }
toml = { version = "0.8.8", optional = true }


[dev-dependencies]
tokio-test = "0.4"
tokio-test = "0.4.3"
envmnt = "0.10.4"
Loading

0 comments on commit e3ede02

Please sign in to comment.