Skip to content

Commit

Permalink
temporarily remove state objects dep for reserving name
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronc committed Sep 19, 2024
1 parent 3caf6eb commit d50074d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ repository.workspace = true
license.workspace = true

[dependencies]
ixc_core = { path = "core" }
ixc_schema = { path = "schema" }
ixc_message_api = { path = "message_api" }
state_objects = { path = "state_objects" }
simple_time = { path = "util/simple_time" }
ixc_core_macros = { path = "core_macros" }
ixc_schema_macros = { path = "schema_macros" }
state_objects_macros = { path = "state_objects_macros" }
ixc_core = { path = "core", version = "0.0.1" }
ixc_schema = { path = "schema", version = "0.0.1" }
ixc_message_api = { path = "message_api", version = "0.0.1" }
#state_objects = { path = "state_objects", version = "0.0.1" }
simple_time = { path = "util/simple_time", version = "0.0.1" }
ixc_core_macros = { path = "core_macros", version = "0.0.1" }
ixc_schema_macros = { path = "schema_macros", version = "0.0.1" }
#state_objects_macros = { path = "state_objects_macros", version = "0.0.1" }

[dev-dependencies]
ixc_testing = { path = "testing" }
#ixc_testing = { path = "testing", version = "0.0.1" }
arrayvec = "0.7.6"
thiserror = "1.0.63"

Expand Down
18 changes: 9 additions & 9 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ pub use ixc_core::resource::Resources;
pub use ixc_message_api::Address;
#[doc(inline)]
pub use ixc_schema::{StructCodec, EnumCodec, OneOfCodec};
#[doc(inline)]
pub use state_objects::*;
// #[doc(inline)]
// pub use state_objects::*;
#[doc(inline)]
pub use simple_time::{Time, Duration};

Expand All @@ -30,10 +30,10 @@ extern crate ixc_schema_macros;
#[doc(inline)]
pub use ixc_schema_macros::*;

#[cfg(feature = "state_objects_macros")]
#[allow(unused_imports)]
#[macro_use]
extern crate state_objects_macros;
#[cfg(feature = "state_objects_macros")]
#[doc(inline)]
pub use state_objects_macros::*;
// #[cfg(feature = "state_objects_macros")]
// #[allow(unused_imports)]
// #[macro_use]
// extern crate state_objects_macros;
// #[cfg(feature = "state_objects_macros")]
// #[doc(inline)]
// pub use state_objects_macros::*;

0 comments on commit d50074d

Please sign in to comment.