Skip to content

Commit

Permalink
Merge pull request #194 from sorokya/add-arm-build
Browse files Browse the repository at this point in the history
Add arm build
  • Loading branch information
sorokya authored Nov 3, 2024
2 parents d8757e7 + 825c1e6 commit eb2882a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "aarch64-unknown-linux-musl", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# Whether to install an updater program
Expand Down
2 changes: 1 addition & 1 deletion src/character.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use eolib::protocol::{
AdminLevel, Coords, Direction, Gender,
};
use eoplus::Arg;
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext, Value};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext};
use mysql_async::Conn;
use rand::Rng;
use std::cmp;
Expand Down
2 changes: 1 addition & 1 deletion src/character/calculate_stats.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::cmp;

use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext, Value};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext};

use crate::{CLASS_DB, FORMULAS, ITEM_DB};

Expand Down
2 changes: 1 addition & 1 deletion src/map/map/events/act_npcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use eolib::protocol::{
Coords, Direction,
};

use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext, Value};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext};
use rand::{seq::SliceRandom, Rng};

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion src/map/map/utils/attack_npc_replies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use eolib::{
Coords, Direction,
},
};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext, Value};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext};
use rand::Rng;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion src/map/npc.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::cmp;

use eolib::protocol::{net::server::NpcMapInfo, Coords, Direction};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext, Value};
use evalexpr::{context_map, eval_float_with_context, DefaultNumericTypes, HashMapContext};
use rand::Rng;

use crate::{FORMULAS, NPC_DB};
Expand Down

0 comments on commit eb2882a

Please sign in to comment.