diff --git a/Cargo.toml b/Cargo.toml index fabbfa3..a935bbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,5 +35,5 @@ indexmap = "2.2" petgraph = "0.6.4" num-bigint = "0.4" num-rational = "0.4" -algonaut = "0.4" +algonaut_core = "0.4" hex = "0.4" \ No newline at end of file diff --git a/crates/semantics/Cargo.toml b/crates/semantics/Cargo.toml index af3de79..78b6433 100644 --- a/crates/semantics/Cargo.toml +++ b/crates/semantics/Cargo.toml @@ -18,5 +18,5 @@ indexmap = { workspace = true } petgraph = { workspace = true } num-bigint = { workspace = true } num-rational = { workspace = true } -algonaut = { workspace = true } +algonaut_core = { workspace = true } hex = { workspace = true } \ No newline at end of file diff --git a/crates/semantics/src/ast.rs b/crates/semantics/src/ast.rs index 68d5a0f..e0cc821 100644 --- a/crates/semantics/src/ast.rs +++ b/crates/semantics/src/ast.rs @@ -10,7 +10,7 @@ use num_bigint::{BigInt, BigUint}; use num_rational::BigRational; use crate::{global_symbol::SymbolInfo, symtable::SymTable}; -use algonaut::core::Address; +use algonaut_core::Address; #[derive(Clone, Debug, PartialEq, Node, Default)] pub struct Type { diff --git a/crates/semantics/src/expression/literals.rs b/crates/semantics/src/expression/literals.rs index cad859b..68f8b75 100644 --- a/crates/semantics/src/expression/literals.rs +++ b/crates/semantics/src/expression/literals.rs @@ -1,6 +1,6 @@ use std::str::FromStr; -use algonaut::core::Address; +use algonaut_core::Address; use folidity_diagnostics::Report; use folidity_parser::{ast as parsed_ast, Span};