Skip to content

Commit

Permalink
use algonaut_core
Browse files Browse the repository at this point in the history
  • Loading branch information
SkymanOne committed Mar 2, 2024
1 parent ac78b1c commit 2707878
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion crates/semantics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion crates/semantics/src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion crates/semantics/src/expression/literals.rs
Original file line number Diff line number Diff line change
@@ -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};

Expand Down

0 comments on commit 2707878

Please sign in to comment.