proto-socket/.gitignore
toki 240239682c Initial commit: Dart implementation of toki-socket protocol
- Protobuf-based binary TCP socket library
- ProtobufClient / ProtobufServer abstract classes with heartbeat
- Type-based message routing via Communicator
- 4-byte big-endian length-prefixed framing protocol
- 8 integration tests (all passing)
- PROTOCOL.md wire format specification
- VSCode launch.json for test runner

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 13:44:04 +09:00

39 lines
1.2 KiB
Text

# ── Dart ──────────────────────────────────────────
dart/.dart_tool/
dart/.pub-cache/
dart/build/
dart/pubspec.lock
dart/doc/
# Dart generated files (proto .pb.dart are intentionally kept)
dart/**/*.g.dart
# ── C# / Unity (future) ───────────────────────────
csharp/bin/
csharp/obj/
csharp/*.user
csharp/.vs/
*.csproj.user
# ── Kotlin / Android (future) ─────────────────────
kotlin/.gradle/
kotlin/build/
kotlin/local.properties
kotlin/.idea/
# ── Swift (future) ────────────────────────────────
swift/.build/
swift/*.xcodeproj/
swift/*.xcworkspace/
swift/Packages.resolved
# ── IDE ───────────────────────────────────────────
.idea/
*.iml
.vscode/settings.json
.vscode/tasks.json
# ── OS ────────────────────────────────────────────
.DS_Store
Thumbs.db
Desktop.ini