diff options
author | Vincent Ambo <mail@tazj.in> | 2018-09-26T14·53+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-09-26T14·54+0200 |
commit | b1e00ff0264fec4f3a5b87470980aebd94db81cf (patch) | |
tree | cd1774471f252d6443ded48aba56f7392e5dce16 /Cargo.toml | |
parent | c03e14758f53eeeecfe8067dd2eff9e9d32c1edd (diff) |
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.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 5d62cea6ec2f..310133abeebb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = [ "finito-core", - "finito-door" + "finito-door", + "finito-postgres" ] |