fix: got everything to compile

This commit is contained in:
Andrew Rioux
2025-02-15 19:01:37 -05:00
parent 4e0944e4c1
commit 118d56fc36
13 changed files with 123 additions and 70 deletions

View File

@@ -2,8 +2,7 @@
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-Ctarget-feature=+crt-static", "--cfg=has_std", "-C", "link-arg=-fuse-ld=mold"]
#rustflags = ["-Ctarget-feature=+crt-static", "--cfg=has_std", "-C", "link-arg=-fuse-ld=mold"]
[unstable]
build-std = ["std", "panic_abort", "core", "alloc"]

View File

@@ -1,6 +1,6 @@
{
"db_name": "SQLite",
"query": "SELECT operating_system, source_ip, source_mac, source_mode, source_netmask,\n source_gateway, port, public_ip, domain_name, certificate, client_cert, client_key,\n source_interface\n FROM beacon_template JOIN beacon_listener",
"query": "SELECT operating_system, source_ip, source_mac, source_mode, source_netmask,\n source_gateway, port, public_ip, domain_name, certificate, client_cert, client_key,\n source_interface\n FROM beacon_template JOIN beacon_listener\n WHERE template_id = ?",
"describe": {
"columns": [
{
@@ -70,7 +70,7 @@
}
],
"parameters": {
"Right": 0
"Right": 1
},
"nullable": [
false,
@@ -88,5 +88,5 @@
true
]
},
"hash": "75816d6d1484350d4a1c37b6679237007868f10438ee9cbd7ae67eeaa345be0f"
"hash": "e2d2d105d18571ddb499e08a13dc1aff769f501f635bf897f1883e36703daa2e"
}

View File

@@ -20,7 +20,7 @@ tower-http = { version = "0.5", features = ["fs", "compression-br", "compression
wasm-bindgen = "0.2"
thiserror = "1"
http = "1"
axum-server = { version = "^0.7", features = ["tokio-rustls", "tls-rustls"], optional = true }
axum-server = { version = "^0.7", features = ["tokio-rustls", "tls-rustls-no-provider"], optional = true }
tracing-subscriber = { version = "0.3", features = ["chrono", "env-filter", "serde", "tracing", "tracing-serde"], optional = true }
structopt = { version = "0.3", optional = true }
anyhow = "1.0"