1
0
This commit is contained in:
Jeff 2023-10-18 19:44:27 -04:00
parent c7e0cdb571
commit 3a5987a3d7
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -914,7 +914,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "dust"
name = "dust-lang"
version = "0.3.0"
dependencies = [
"ansi_term",

View File

@ -11,7 +11,7 @@ use rustyline::{
use std::{borrow::Cow, fs::read_to_string};
use dust::{evaluate, evaluate_with_context, Value, VariableMap};
use dust_lang::{evaluate, evaluate_with_context, Value, VariableMap};
/// Command-line arguments to be parsed.
#[derive(Parser, Debug)]