Skip to content

Releases: KSK9820/DoraKit

DoraKit v1.0.0

01 Aug 14:03

Choose a tag to compare

🎉 Initial Release

✨ Features

  • @JsonKey macro for custom JSON key mapping
  • @AutoCodingKeys macro 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
}