mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
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]
|
|
turso_core = { path = "../core", features = ["simulator"]}
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
log = "0.4.20"
|
|
env_logger = "0.10.1"
|
|
regex = "1.11.1"
|
|
regex-syntax = { version = "0.8.5", default-features = false, features = [
|
|
"unicode",
|
|
] }
|
|
anarchist-readable-name-generator-lib = "=0.1.2"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
notify = "8.0.0"
|
|
rusqlite.workspace = true
|
|
dirs = "6.0.0"
|
|
chrono = { version = "0.4.40", features = ["serde"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
anyhow.workspace = true
|
|
turso_sqlite3_parser = { workspace = true, features = ["serde"]}
|
|
hex = "0.4.3"
|
|
itertools = "0.14.0"
|