Files
turso/simulator/Cargo.toml
Pekka Enberg 351242561d Kill anyhow usage
Switch anyhow to explicit `LimboError` type using thiserror crate, which
lets us make error handling more structured.
2024-07-25 17:15:08 +03:00

21 lines
426 B
TOML

# Copyright 2024 the Limbo authors. All rights reserved. MIT license.
[package]
name = "limbo_sim"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "The Limbo deterministic simulator"
publish = false
[[bin]]
name = "limbo_sim"
path = "main.rs"
[dependencies]
limbo_core = { path = "../core" }
rand = "0.8.5"
rand_chacha = "0.3.1"