irontelemetry-rust/.gitignore
David Friedel 09b9ae10c6 Implement IronTelemetry Rust SDK
- Core client with exception/message capture
- Journey and step tracking with closure support
- Breadcrumb management with VecDeque ring buffer
- HTTP transport using reqwest (sync + async)
- Thread-safe operations with Arc and RwLock
- Sample rate and beforeSend filtering
- Tags, extras, and user context
- Builder pattern for configuration
- Serde serialization for all types
2025-12-25 10:27:55 +00:00

22 lines
261 B
Plaintext

# Generated by Cargo
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Debug
*.log