--- a/Cargo.lock +++ b/Cargo.lock @@ -2459,7 +2459,6 @@ "jrsonnet-cli", "jrsonnet-evaluator", "jrsonnet-gcmodule", - "jrsonnet-ir", "mimallocator", "serde", "serde_json", --- a/cmds/jrsonnet/Cargo.toml +++ b/cmds/jrsonnet/Cargo.toml @@ -40,7 +40,6 @@ # obj?.field, obj?.['field'] exp-null-coaelse = [ "jrsonnet-evaluator/exp-null-coaelse", - "jrsonnet-ir/exp-null-coaelse", "jrsonnet-cli/exp-null-coaelse", ] # --exp-apply @@ -48,7 +47,6 @@ [dependencies] jrsonnet-evaluator.workspace = true -jrsonnet-ir.workspace = true jrsonnet-cli.workspace = true jrsonnet-gcmodule.workspace = true --- a/cmds/jrsonnet/src/main.rs +++ b/cmds/jrsonnet/src/main.rs @@ -7,10 +7,9 @@ use clap_complete::Shell; use jrsonnet_cli::{GcOpts, ManifestOpts, MiscOpts, OutputOpts, StdOpts, TlaOpts, TraceOpts}; use jrsonnet_evaluator::{ - ResultExt, State, Val, apply_tla, bail, + ResultExt, SourceDefaultIgnoreJpath, SourcePath, State, Val, apply_tla, bail, error::{Error as JrError, ErrorKind}, }; -use jrsonnet_ir::{SourceDefaultIgnoreJpath, SourcePath}; #[cfg(feature = "mimalloc")] #[global_allocator]