mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
- add `--watch` flag - start saving seeds in persistent storage - make a separate version of execution functions that use `vector of interaction` instead of `InteractionPlan`
29 lines
681 B
TOML
29 lines
681 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"
|
|
log = "0.4.20"
|
|
tempfile = "3.0.7"
|
|
env_logger = "0.10.1"
|
|
anarchist-readable-name-generator-lib = "0.1.2"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
notify = "8.0.0"
|