Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildkite/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:latest
FROM rust:1.50

RUN rustup component add rustfmt && \
rustup component add clippy
Expand Down
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,26 @@ license-file = "LICENSE.txt"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
crossbeam = "0.8"
dashmap = "4.0"
derive_more = "0.99"
displaydoc = "0.1"
env_logger = "0.8"
futures = "0.3"
log = "0.4"
opentelemetry-jaeger = "0.10"
opentelemetry = "0.11.2"
prost = "0.7"
prost-types = "0.7"
thiserror = "1.0"
tokio = { version = "1.1", features = ["rt", "rt-multi-thread"] }
tracing = { version = "0.1", features = ["log"] }
tracing-opentelemetry = "0.11"
tracing-opentelemetry = "0.10"
tracing-subscriber = "0.2"
url = "2.2"
rand = "0.8.3"
uuid = { version = "0.8.2", features = ["v4"] }

[dependencies.tonic]
version = "0.4"
#path = "../tonic/tonic"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Core SDK that can be used as a base for all other Temporal SDKs.

# Getting started

See the [Architecture](ARCHITECTURE.md) doc for some high-level information.

This repo uses a submodule for upstream protobuf files. The path `protos/api_upstream` is a
submodule -- when checking out the repo for the first time make sure you've run
`git submodule update --init --recursive`. TODO: Makefile.
Expand Down
Loading