Skip to content

Commit

Permalink
fix: ipfs behind feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc authored and smrz2001 committed Dec 15, 2023
1 parent 1e32a48 commit 9527f05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ check-fmt:
.PHONY: check-clippy
check-clippy:
# Check with default features
${CARGO} clippy --workspace --all-targets
${CARGO} clippy --workspace
# Check with all features
${CARGO} clippy --workspace --all-targets --all-features
${CARGO} clippy --workspace --all-features

.PHONY: build
build: runner operator
Expand Down
3 changes: 2 additions & 1 deletion operator/src/network/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//! Network is k8s custom resource that defines a Ceramic network.
// Export all spec types
mod ipfs;
mod spec;
pub use spec::*;

Expand All @@ -17,6 +16,8 @@ pub(crate) mod controller;
#[cfg(feature = "controller")]
pub(crate) mod datadog;
#[cfg(feature = "controller")]
pub(crate) mod ipfs;
#[cfg(feature = "controller")]
pub(crate) mod ipfs_rpc;
#[cfg(feature = "controller")]
pub(crate) mod peers;
Expand Down

0 comments on commit 9527f05

Please sign in to comment.