Revert mold - it doesn't help much and causes CI problems.

This commit is contained in:
Herbert Wolverson 2024-07-15 16:11:21 -05:00
parent 2caec1476f
commit 8568b78be0
3 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@
# Don't forget to setup `/etc/lqos.conf`
# Check Pre-Requisites
udo apt install python3-pip clang gcc gcc-multilib llvm libelf-dev git nano graphviz curl screen llvm pkg-config linux-tools-common linux-tools-`uname -r` libbpf-dev libssl-dev esbuild mold
udo apt install python3-pip clang gcc gcc-multilib llvm libelf-dev git nano graphviz curl screen llvm pkg-config linux-tools-common linux-tools-`uname -r` libbpf-dev libssl-dev esbuild
if ! rustup -V &> /dev/null
then

View File

@ -1,3 +1,3 @@
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-C", "link-arg=--ld-path=/usr/bin/mold"]
#[target.x86_64-unknown-linux-gnu]
#linker = "/usr/bin/clang"
#rustflags = ["-C", "link-arg=--ld-path=/usr/bin/mold"]

View File

@ -6,17 +6,17 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
reqwest = { version = "0.12.3", features = ["json"] }
tokio = { version = "1.37.0", features = ["full"] }
anyhow = { workspace = true }
reqwest = { workspace = true }
tokio = { workspace = true }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
lqos_config = { path = "../lqos_config" }
uisp = { path = "../uisp" }
thiserror = "1.0.58"
serde = { version = "1.0.198", features = ["derive"] }
csv = "1.3.0"
serde_json = "1.0.116"
ip_network_table = "0"
ip_network = "0"
pyo3 = "0.20"
thiserror = { workspace = true }
serde = { workspace = true }
csv = { workspace = true }
serde_json = { workspace = true }
ip_network_table = { workspace = true }
ip_network = { workspace = true }
pyo3 = { workspace = true }