Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .cargo/ci-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,3 @@ rustflags = ["-D", "warnings"]
# We don't need fullest debug information for dev stuff (tests etc.) in CI.
[profile.dev]
debug = "limited"

# Use Mold on Linux, because it's faster than GNU ld and LLD.
#
# We no longer set this in the default `config.toml` so that developers can opt in to Wild, which
# is faster than Mold, in their own ~/.cargo/config.toml.
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]

[target.aarch64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
4 changes: 4 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ rustflags = [
"target-feature=+crt-static", # This fixes the linking issue when compiling livekit on Windows
]

# We need lld to link libwebrtc.a successfully on aarch64-linux
[target.aarch64-unknown-linux-gnu]
rustflags = ["-C", "link-arg=-fuse-ld=lld"]

[env]
MACOSX_DEPLOYMENT_TARGET = "10.15.7"
7 changes: 0 additions & 7 deletions .claude/settings.local.json

This file was deleted.

5 changes: 0 additions & 5 deletions .config/nextest.toml

This file was deleted.

10 changes: 7 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Build artifacts
# Build Artifacts
**/target
**/cargo-target
*.wasm

# IDE and editor
# IDE and Editor
.DS_Store
.idea
.vscode
.zed
*.xcodeproj
*.xcworkspace
DerivedData/
Expand All @@ -23,11 +24,14 @@ xcuserdata/
.envrc
/result

# Environment and secrets
# Environment and Secrets
.env
.env.secret.toml
.netrc

# Version Control
.git

# Misc
**/*.db
.build
35 changes: 0 additions & 35 deletions .zed/settings.json

This file was deleted.

23 changes: 0 additions & 23 deletions .zed/tasks.json

This file was deleted.

Loading