Skip to content

Commit

Permalink
all: deps in workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
fooker committed Oct 14, 2024
1 parent e0c3ec7 commit f1f731d
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ license = "MIT"

[workspace.dependencies]
photonic = { path = "core" }
photonic-dynamic = { path = "dynamic" }

tokio = { version = "1.35" }
tokio-stream = { version = "0.1.15" }
Expand Down
2 changes: 1 addition & 1 deletion dynamic/runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "src/main.rs"

[dependencies]
photonic = { workspace = true }
photonic-dynamic = { path = ".." }
photonic-dynamic = { workspace = true, optional = true }
photonic-effects = { path = "../../effects", features = ["dynamic"] }
photonic-output-terminal = { path = "../../output-terminal", features = ["dynamic"] }
photonic-output-null = { path = "../../output-null", features = ["dynamic"] }
Expand Down
2 changes: 1 addition & 1 deletion effects/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dynamic = [

[dependencies]
photonic = { workspace = true, features = ["boxed"] }
photonic-dynamic = { path = "../dynamic", optional = true }
photonic-dynamic = { workspace = true, optional = true }

futures = { workspace = true }

Expand Down
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@
packages = with pkgs; [
cargo-deny
cargo-outdated
cargo-workspaces

codespell
];

Expand Down
2 changes: 1 addition & 1 deletion lua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ photonic-output-terminal = { path = "../output-terminal" }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }

[lints]
workspace = true
workspace = true
2 changes: 1 addition & 1 deletion output-null/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dynamic = ["dep:photonic-dynamic", "dep:serde"]

[dependencies]
photonic = { workspace = true }
photonic-dynamic = { path = "../dynamic", optional = true }
photonic-dynamic = { workspace = true, optional = true }

palette = { workspace = true }
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion output-split/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dynamic = ["dep:photonic-dynamic", "dep:serde"]

[dependencies]
photonic = { workspace = true, features = ["boxed"] }
photonic-dynamic = { path = "../dynamic", optional = true }
photonic-dynamic = { workspace = true, optional = true }

palette = { workspace = true }
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion output-terminal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dynamic = ["dep:photonic-dynamic", "dep:serde"]

[dependencies]
photonic = { workspace = true }
photonic-dynamic = { path = "../dynamic", optional = true }
photonic-dynamic = { workspace = true, optional = true }

palette = { workspace = true }
anyhow = { workspace = true }
Expand Down

0 comments on commit f1f731d

Please sign in to comment.