Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CARGO_TERM_COLOR=always
RUST_BACKTRACE=full
RUST_LOG=debug,concision=info
117 changes: 87 additions & 30 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/FL03/rspace.git"
rust-version = "1.85.0"
version = "0.0.7"
version = "0.0.8"

[workspace.dependencies]
rspace = { default-features = false, path = "rspace", version = "0.0.7" }
rspace-core = { default-features = false, path = "core", version = "0.0.7" }
rspace-traits = { default-features = false, path = "traits", version = "0.0.7" }
rspace = { default-features = false, path = "rspace", version = "0.0.8" }
rspace-core = { default-features = false, path = "core", version = "0.0.8" }
rspace-traits = { default-features = false, path = "traits", version = "0.0.8" }
# development & benchmarking
criterion = { version = "0.8" }
# data structures
hashbrown = { default-features = false, version = "0.16" }
ndarray = { default-features = false, version = "0.17" }
# error handling
anyhow = { default-features = false, version = "1" }
thiserror = { default-features = false, version = "2" }
Expand Down
6 changes: 6 additions & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ default = ["std"]
full = [
"default",
"complex",
"ndarray",
"hashbrown",
"json",
"rand",
Expand All @@ -80,6 +81,7 @@ nightly = [
# ********* [FF] Environments *********
std = [
"alloc",
"getrandom?/std",
"rspace-traits/std",
"hashbrown?/default",
"num-complex?/std",
Expand Down Expand Up @@ -113,6 +115,10 @@ alloc = [

complex = ["dep:num-complex"]

ndarray = [
"rspace-traits/ndarray",
]

hashbrown = [
"dep:hashbrown",
"rspace-traits/hashbrown",
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let
};

common = {
version = "0.0.7";
version = "0.0.8";
src = self;

cargoLock = {
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
in rec {
packages.default = pkgs.rustPlatform.buildRustPackage {
pname = "rspace";
version = "0.0.7";
version = "0.0.8";
src = self; # ./.;
cargoLock = {
lockFile = ./Cargo.lock;
Expand Down
6 changes: 6 additions & 0 deletions rspace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ default = ["std"]
full = [
"default",
"complex",
"ndarray",
"hashbrown",
"json",
"rand",
Expand Down Expand Up @@ -104,6 +105,11 @@ complex = [
"rspace-traits/complex",
]

ndarray = [
"rspace-core/ndarray",
"rspace-traits/ndarray",
]

hashbrown = [
"rspace-core/hashbrown",
"rspace-traits/hashbrown",
Expand Down
2 changes: 1 addition & 1 deletion rspace/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub use rspace_traits as traits;
#[doc(inline)]
pub use rspace_core::*;
#[doc(inline)]
pub use rspace_traits::*;
pub use rspace_traits::prelude::*;
// prelude
#[doc(hidden)]
pub mod prelude {
Expand Down
Loading
Loading