From b1e00ff0264fec4f3a5b87470980aebd94db81cf Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 26 Sep 2018 16:53:04 +0200 Subject: feat(postgres): Bootstrap Postgres persistence implementation Adds the initial finito-postgres crate with type definitions for the tables and initial functions to interact with persisted FSMs. This is far from feature complete at this commit. --- finito-postgres/Cargo.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 finito-postgres/Cargo.toml (limited to 'finito-postgres/Cargo.toml') diff --git a/finito-postgres/Cargo.toml b/finito-postgres/Cargo.toml new file mode 100644 index 000000000000..c9f8476dbdc6 --- /dev/null +++ b/finito-postgres/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "finito-postgres" +version = "0.1.0" +authors = ["Vincent Ambo "] + +[dependencies] +chrono = "0.4" +serde = "1.0" +serde_json = "1.0" +postgres-derive = "0.3" + +[dependencies.postgres] +version = "0.15" +features = [ "with-uuid", "with-chrono", "with-serde_json" ] + +[dependencies.uuid] +version = "0.5" +features = [ "v4" ] + +[dependencies.finito] +path = "../finito-core" -- cgit 1.4.1