Releases: KSK9820/DoraKit
Releases · KSK9820/DoraKit
DoraKit v1.0.0
🎉 Initial Release
✨ Features
@JsonKeymacro for custom JSON key mapping@AutoCodingKeysmacro for automatic CodingKeys generation- Automatic Codable protocol conformance
- Type-safe compile-time validation
- Comprehensive test suite
📋 Requirements
- Swift 6.0+
- macOS 10.15+, iOS 13+, tvOS 13+, watchOS 6+, macCatalyst 13+
⬇️ Installation
dependencies: [
.package(url: "https://github.com/KSK9820/DoraKit.git", from: "1.0.0")
]📖 Usage
import DoraKit
@AutoCodingKeys
struct User {
@JsonKey("user_name") let name: String
let age: Int
}