Skip to content

Commit acb8495

Browse files
committed
refactor: split queue module into multiple files
1 parent 390c796 commit acb8495

9 files changed

Lines changed: 860 additions & 810 deletions

File tree

dist-workspace.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["cargo:."]
44
# Config for 'dist'
55
[dist]
66
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7-
cargo-dist-version = "0.30.0"
7+
cargo-dist-version = "0.32.0"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app
@@ -53,3 +53,4 @@ x86_64-unknown-linux-musl = "ubuntu-latest"
5353

5454
[[dist.extra-artifacts]]
5555
artifacts = ["scripts/install.sh"]
56+
build = []

rattan-core/src/cells/bandwidth/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ use std::fmt::Debug;
22
use std::sync::Arc;
33

44
use async_trait::async_trait;
5-
use netem_trace::{model::BwTraceConfig, Bandwidth, BwTrace, Delay};
5+
use netem_trace::model::BwTraceConfig;
6+
use netem_trace::{Bandwidth, BwTrace, Delay};
67
#[cfg(feature = "serde")]
78
use serde::{Deserialize, Serialize};
89
use tokio::sync::mpsc;

0 commit comments

Comments
 (0)