Revision 33d7c84a7bc3d86211b8e397b1c2d079bdfb6bb4 authored by martoon on 12 October 2023, 13:31:00 UTC, committed by martoon on 09 November 2023, 15:57:30 UTC
At first, I didn't write logs assuming that they will be highly
available. Actually they are, and we could log more.

So here I at least log the result.
1 parent a371e92
Raw File
Cargo.toml
# SPDX-FileCopyrightText: 2023 Nomadic Labs <contact@nomadic-labs.com>
# SPDX-FileCopyrightText: 2023 Marigold <contact@marigold.dev>
#
# SPDX-License-Identifier: MIT

[workspace]

members = [
  "kernel",
  "collector",
]

[workspace.dependencies]
tezos-smart-rollup-core = { path = "../kernel_sdk/core" }
tezos-smart-rollup-host = { path = "../kernel_sdk/host" }
tezos-smart-rollup-debug = { path = "../kernel_sdk/debug" }
tezos-smart-rollup-entrypoint = { path = "../kernel_sdk/entrypoint" }
tezos-smart-rollup-storage = { path = "../kernel_sdk/storage" }
tezos-smart-rollup-encoding = { path = "../kernel_sdk/encoding" }
tezos-smart-rollup-mock = { path = "../kernel_sdk/mock" }
back to top