Skip to content

Commit

Permalink
Merge pull request Putnam3145#28 from jupyterkat/katmospherics
Browse files Browse the repository at this point in the history
concurrent monstermos: katmos
  • Loading branch information
Putnam3145 authored Dec 11, 2021
2 parents d7506b5 + d462029 commit fe6be06
Show file tree
Hide file tree
Showing 5 changed files with 968 additions and 67 deletions.
57 changes: 29 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ auxcleanup_gas_deletion = ["auxcleanup"]
equalization = []
monstermos = ["equalization"]
putnamos = ["equalization"]
katmos = ["equalization"]
reaction_hooks = []
plasma_fire_hook = ["reaction_hooks"]
trit_fire_hook = ["reaction_hooks"]
Expand All @@ -28,24 +29,24 @@ crate-type = ["cdylib"]
auxtools = { git = "https://github.com/willox/auxtools"}
auxcallback = { git = "https://github.com/Putnam3145/auxcallback" }
auxcleanup = { git = "https://github.com/Putnam3145/auxcleanup", optional = true}
itertools = "0.9.0"
rayon = "1.5.0"
float-ord = "0.2.0"
crossbeam = "0.8.0"
flume = "0.10.5"
parking_lot = "0.11.1"
itertools = "0.10.3"
rayon = "1.5.1"
float-ord = "0.3.2"
crossbeam = "0.8.1"
flume = "0.10.9"
parking_lot = "0.11.2"
fxhash = "0.2.1"
nonmax = "0.5.0"
indexmap = "1.7.0"
ahash = "0.7.4"
indexmap = { version = "1.7.0", features = ["rayon"] }
ahash = "0.7.6"

[dependencies.dashmap]
version = "4.0.2"
features = ["raw-api"]

[dependencies.tinyvec]
version = "1.1.0"
features = ["rustc_1_40", "alloc"]
version = "1.5.1"
features = ["rustc_1_55", "alloc"]

[profile.release]
lto = 'thin'
Expand Down
3 changes: 3 additions & 0 deletions src/turfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ pub mod monstermos;
#[cfg(feature = "putnamos")]
pub mod putnamos;

#[cfg(feature = "katmos")]
pub mod katmos;

use crate::gas::Mixture;

use auxtools::*;
Expand Down
Loading

0 comments on commit fe6be06

Please sign in to comment.