mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
Switch anyhow to explicit `LimboError` type using thiserror crate, which lets us make error handling more structured.
21 lines
426 B
TOML
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"
|