cufflink 0.6.0

Define CRUD microservices in Rust — deploy with a single command
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "cufflink"
version = "0.6.0"
edition = "2021"
description = "Define CRUD microservices in Rust — deploy with a single command"
license = "MIT"
repository = "https://github.com/driftwerk/cufflink"
keywords = ["crud", "microservice", "rest-api", "postgres", "deploy"]
categories = ["web-programming", "database"]
readme = "../README.md"

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
cufflink-types = { version = "0.6.0", path = "../types" }
cufflink-sdk-macros = { version = "0.6.0", path = "../sdk-macros" }