diff --git a/Procfile b/Procfile index c8de745..aedb70e 100644 --- a/Procfile +++ b/Procfile @@ -5,5 +5,6 @@ object-store: OTTO_OBJECT_DIR=tmp/objects RUST_LOG=debug ./target/debug/otto-object-store orchestrator: RUST_LOG=debug STEPS_DIR=$PWD/tmp PATH=$PWD/target/debug:$PATH otto-local-orchestrator parser: RUST_LOG=debug ./target/debug/otto-parser +reldata: RUST_LOG=debug ./target/debug/otto-reldata # vim: ft=sh diff --git a/services/reldata/Cargo.toml b/services/reldata/Cargo.toml index 51a701c..bd3d92c 100644 --- a/services/reldata/Cargo.toml +++ b/services/reldata/Cargo.toml @@ -1,12 +1,15 @@ [package] -name = "reldata" +name = "otto-reldata" version = "0.1.0" authors = ["R. Tyler Croy "] edition = "2018" [dependencies] -async-std = { version = "~1.7", features = ["attributes"]} +async-graphql = "2.0" +async-graphql-tide = "2.0" +async-std = { version = "1", features = ["attributes"]} log = "~0.4.11" otto-models = { path = "../../crates/models" } pretty_env_logger = "~0.4.0" +sqlx = { version = "~0.5.1", features = ["runtime-async-std-rustls", "postgres", "tls", "json", "sqlite", "chrono", "macros"]} tide = "~0.15.0"