mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-03 17:48:17 +00:00
change the name of the simulator submodule into runner
This commit is contained in:
parent
4f07342fdc
commit
2186b3973b
6 changed files with 6 additions and 6 deletions
|
@ -6,9 +6,9 @@ use model::query::{Create, Query};
|
|||
use model::table::{Column, Name, Table, Value};
|
||||
use rand::prelude::*;
|
||||
use rand_chacha::ChaCha8Rng;
|
||||
use simulator::cli::SimulatorCLI;
|
||||
use simulator::env::{SimConnection, SimulatorEnv, SimulatorOpts};
|
||||
use simulator::io::SimulatorIO;
|
||||
use runner::cli::SimulatorCLI;
|
||||
use runner::env::{SimConnection, SimulatorEnv, SimulatorOpts};
|
||||
use runner::io::SimulatorIO;
|
||||
use std::backtrace::Backtrace;
|
||||
use std::io::Write;
|
||||
use std::path::Path;
|
||||
|
@ -19,7 +19,7 @@ use tempfile::TempDir;
|
|||
mod generation;
|
||||
mod model;
|
||||
mod properties;
|
||||
mod simulator;
|
||||
mod runner;
|
||||
|
||||
#[allow(clippy::arc_with_non_send_sync)]
|
||||
fn main() {
|
||||
|
|
|
@ -6,7 +6,7 @@ use rand_chacha::ChaCha8Rng;
|
|||
|
||||
use crate::model::table::Table;
|
||||
|
||||
use crate::simulator::io::SimulatorIO;
|
||||
use crate::runner::io::SimulatorIO;
|
||||
|
||||
pub(crate) struct SimulatorEnv {
|
||||
pub(crate) opts: SimulatorOpts,
|
|
@ -4,7 +4,7 @@ use limbo_core::{OpenFlags, PlatformIO, Result, IO};
|
|||
use rand::{RngCore, SeedableRng};
|
||||
use rand_chacha::ChaCha8Rng;
|
||||
|
||||
use crate::simulator::file::SimulatorFile;
|
||||
use crate::runner::file::SimulatorFile;
|
||||
|
||||
pub(crate) struct SimulatorIO {
|
||||
pub(crate) inner: Box<dyn IO>,
|
Loading…
Add table
Add a link
Reference in a new issue