Skip to content

Commit

Permalink
updates people
Browse files Browse the repository at this point in the history
  • Loading branch information
jupyterkat committed Mar 9, 2024
1 parent f551245 commit 198f1d9
Show file tree
Hide file tree
Showing 16 changed files with 280 additions and 483 deletions.
283 changes: 198 additions & 85 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
members = ["crates/*"]

[workspace.dependencies]
byondapi = "0.3.1"
byondapi-binds = { path = "./crates/byondapi-binds" }
byondapi = "0.4.2"
coarsetime = "0.1.34"
flume = "0.11.0"
eyre = "0.6.12"

[package]
name = "auxmos"
Expand Down Expand Up @@ -37,13 +39,14 @@ all_reaction_hooks = [
crate-type = ["cdylib"]

[dependencies]
byondapi = { workspace = true }
flume = { workspace = true }
coarsetime = { workspace = true }
eyre = { workspace = true }
auxcallback = { path = "./crates/auxcallback" }
byondapi-binds = { path = "./crates/byondapi-binds" }
byondapi = "0.3.1"
itertools = "0.12.1"
rayon = "1.8.1"
float-ord = "0.3.2"
flume = "0.11.0"
parking_lot = "0.12.1"
fxhash = "0.2.1"
ahash = "0.8.8"
Expand All @@ -55,9 +58,8 @@ atomic_float = "0.1.0"
petgraph = "0.6.4"
bitflags = "2.4.2"
nom = "7.1.3"
coarsetime = "0.1.34"
mimalloc = { version = "0.1.39", default-features = false }
eyre = "0.6.12"
stable-eyre = "0.2.2"

[dependencies.tinyvec]
version = "1.6.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/auxcallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
crate-type = ["lib"]

[dependencies]
flume = "0.11.0"
coarsetime = "0.1.34"
byondapi = "0.3.1"
eyre = "0.6.12"
byondapi = { workspace = true }
flume = { workspace = true }
coarsetime = { workspace = true }
eyre = { workspace = true }
13 changes: 0 additions & 13 deletions crates/byondapi-binds/Cargo.toml

This file was deleted.

18 changes: 0 additions & 18 deletions crates/byondapi-binds/byondapi-impl/Cargo.toml

This file was deleted.

217 changes: 0 additions & 217 deletions crates/byondapi-binds/byondapi-impl/src/lib.rs

This file was deleted.

72 changes: 0 additions & 72 deletions crates/byondapi-binds/src/lib.rs

This file was deleted.

1 change: 1 addition & 0 deletions src/gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ static GAS_MIXTURES: RwLock<Option<Vec<RwLock<Mixture>>>> = const_rwlock(None);

static NEXT_GAS_IDS: RwLock<Option<Vec<usize>>> = const_rwlock(None);

#[byondapi::init]
pub fn initialize_gases() {
*GAS_MIXTURES.write() = Some(Vec::with_capacity(240_000));
*NEXT_GAS_IDS.write() = Some(Vec::with_capacity(2000));
Expand Down
Loading

0 comments on commit 198f1d9

Please sign in to comment.