Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T01:44:22.523Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

config.toml

25 lines · 1.1 KB · toml
1[build]
2# v0 mangling scheme provides more detailed backtraces around closures
3rustflags = ["-C", "symbol-mangling-version=v0", "--cfg", "tokio_unstable"]
4
5[alias]
6xtask = "run --package xtask --"
7perf-test = ["test", "--profile", "release-fast", "--lib", "--bins", "--tests", "--all-features", "--config", "target.'cfg(true)'.runner='cargo run -p perf --release'", "--config", "target.'cfg(true)'.rustflags=[\"--cfg\", \"perf_enabled\"]"]
8# Keep similar flags here to share some ccache
9perf-compare = ["run", "--profile", "release-fast", "-p", "perf", "--config", "target.'cfg(true)'.rustflags=[\"--cfg\", \"perf_enabled\"]", "--", "compare"]
10
11[target.'cfg(target_os = "windows")']
12rustflags = [
13    "--cfg",
14    "windows_slim_errors",        # This cfg will reduce the size of `windows::core::Error` from 16 bytes to 4 bytes
15    "-C",
16    "target-feature=+crt-static", # This fixes the linking issue when compiling livekit on Windows
17]
18
19# We need lld to link libwebrtc.a successfully on aarch64-linux
20[target.aarch64-unknown-linux-gnu]
21rustflags = ["-C", "link-arg=-fuse-ld=lld"]
22
23[env]
24MACOSX_DEPLOYMENT_TARGET = "10.15.7"
25
Served at tenant.openagents/omega Member data and write actions are omitted.