Go to file
Siemen Sikkema aba1336f91
Bump decoded (#1)
* Bump decoded

* Tweak value access

* Move doc link
2021-11-22 10:36:24 +01:00
.github/workflows Remove old docs before updating 2021-11-19 12:52:00 +01:00
Sources/Validations Bump decoded (#1) 2021-11-22 10:36:24 +01:00
Tests/ValidationsTests Adjust expected test output for Linux 2021-11-17 16:09:00 +01:00
.gitignore More docs + API alignment 2021-11-16 16:02:00 +01:00
LICENSE Add LICENSE 2021-07-20 23:33:33 +02:00
Package.swift Bump decoded (#1) 2021-11-22 10:36:24 +01:00
README.md Bump decoded (#1) 2021-11-22 10:36:24 +01:00

README.md

Validations

CI

Type-safe and composable validations with versatile output.

Installation

Add Validations to your Package.swift file.

dependencies: [
    ...
    .package(url: "https://github.com/siemensikkema/Validations.git", from: "0.2.0"),
]
...
targets: [
    .target(
        name: "MyTarget",
        dependencies: [
            ...
            "Validations",
        ]
    )
]

Import Decoded and Validations to any file you want to use this library in.

import Decoded
import Validations

Documentation

This library's documentation is created using DocC and can be found here.