Skip to content

Commit

Permalink
Adds missing cargo requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
SirCipher committed Jun 27, 2024
1 parent 4ab8e81 commit 13dae76
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
16 changes: 8 additions & 8 deletions server/swimos_introspection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ repository = "https://github.com/swimos/swim-rust/"

[dependencies]
futures = { workspace = true }
swimos_utilities = { path = "../../swimos_utilities", features = ["io", "trigger", "text", "encoding"] }
swimos_runtime = { path = "../../runtime/swimos_runtime" }
swimos_utilities = { path = "../../swimos_utilities", features = ["io", "trigger", "text", "encoding"], version = "0.1.0" }
swimos_runtime = { path = "../../runtime/swimos_runtime", version = "0.1.0" }
bytes = { workspace = true }
tokio = { workspace = true, features = ["sync", "time"] }
tokio-util = { workspace = true, features = ["codec"] }
swimos_model = { path = "../../api/swimos_model" }
swimos_recon = { path = "../../api/formats/swimos_recon" }
swimos_api = { path = "../../api/swimos_api" }
swimos_agent_protocol = { path = "../../api/swimos_agent_protocol" }
swimos_meta = { path = "../../api/swimos_meta" }
swimos_form = { path = "../../api/swimos_form" }
swimos_model = { path = "../../api/swimos_model", version = "0.1.0" }
swimos_recon = { path = "../../api/formats/swimos_recon", version = "0.1.0" }
swimos_api = { path = "../../api/swimos_api", version = "0.1.0" }
swimos_agent_protocol = { path = "../../api/swimos_agent_protocol", version = "0.1.0" }
swimos_meta = { path = "../../api/swimos_meta", version = "0.1.0" }
swimos_form = { path = "../../api/swimos_form", version = "0.1.0" }
tokio-stream = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion swimos_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ swimos_client_api = { path = "../api/swimos_client_api", version = "0.1.0" }
swimos_model = { path = "../api/swimos_model", version = "0.1.0" }
swimos_form = { path = "../api/swimos_form", version = "0.1.0" }
swimos_runtime = { path = "../runtime/swimos_runtime", version = "0.1.0" }
swimos_remote = { path = "../runtime/swimos_remote", version = "0.1.0" }
swimos_remote = { path = "../runtime/swimos_remote", version = "0.1.0", features = ["tls"] }
ratchet = { workspace = true }
url = { workspace = true }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion swimos_downlink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ swimos_model = { path = "../api/swimos_model", version = "0.1.0" }
swimos_form = { path = "../api/swimos_form", version = "0.1.0" }
swimos_recon = { path = "../api/formats/swimos_recon", version = "0.1.0" }
bytes = { workspace = true }
tokio = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
tokio-util = { workspace = true, features = ["codec"] }
swimos_api = { path = "../api/swimos_api", version = "0.1.0" }
swimos_client_api = { path = "../api/swimos_client_api", version = "0.1.0" }
Expand Down
28 changes: 14 additions & 14 deletions swimos_utilities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ trigger = ["swimos_trigger"]
encoding = ["swimos_encoding"]

[dependencies]
swimos_byte_channel = { path = "./swimos_byte_channel", optional = true }
swimos_multi_reader = { path = "./swimos_multi_reader", optional = true }
swimos_algebra = { path = "./swimos_algebra", optional = true }
swimos_num = { path = "./swimos_num" }
swimos_errors = { path = "./swimos_errors", optional = true }
swimos_format = { path = "./swimos_format", optional = true }
swimos_trigger = { path = "./swimos_trigger", optional = true }
swimos_future = { path = "./swimos_future", optional = true }
swimos_fs = { path = "./swimos_fs", optional = true }
swimos_route = { path = "./swimos_route", optional = true }
swimos_rtree = { path = "./swimos_rtree", optional = true }
swimos_sync = { path = "./swimos_sync", optional = true }
swimos_time = { path = "./swimos_time", optional = true }
swimos_encoding = { path = "./swimos_encoding", optional = true }
swimos_byte_channel = { path = "./swimos_byte_channel", optional = true, version = "0.1.0" }
swimos_multi_reader = { path = "./swimos_multi_reader", optional = true, version = "0.1.0" }
swimos_algebra = { path = "./swimos_algebra", optional = true, version = "0.1.0" }
swimos_num = { path = "./swimos_num", version = "0.1.0" }
swimos_errors = { path = "./swimos_errors", optional = true, version = "0.1.0" }
swimos_format = { path = "./swimos_format", optional = true, version = "0.1.0" }
swimos_trigger = { path = "./swimos_trigger", optional = true, version = "0.1.0" }
swimos_future = { path = "./swimos_future", optional = true, version = "0.1.0" }
swimos_fs = { path = "./swimos_fs", optional = true, version = "0.1.0" }
swimos_route = { path = "./swimos_route", optional = true, version = "0.1.0" }
swimos_rtree = { path = "./swimos_rtree", optional = true, version = "0.1.0" }
swimos_sync = { path = "./swimos_sync", optional = true, version = "0.1.0" }
swimos_time = { path = "./swimos_time", optional = true, version = "0.1.0" }
swimos_encoding = { path = "./swimos_encoding", optional = true, version = "0.1.0" }

2 changes: 1 addition & 1 deletion swimos_utilities/swimos_errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ license = "Apache-2.0"
repository = "https://github.com/swimos/swim-rust/"

[dependencies]
swimos_algebra = { path = "../swimos_algebra" }
swimos_algebra = { path = "../swimos_algebra", version = "0.1.0" }

[dev-dependencies]
4 changes: 2 additions & 2 deletions swimos_utilities/swimos_future/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ either = { workspace = true }
futures = { workspace = true }
tokio = { workspace = true, features = ["sync", "time"] }
pin-project = { workspace = true }
swimos_trigger = { path = "../swimos_trigger" }
swimos_trigger = { path = "../swimos_trigger", version = "0.1.0" }
rand = { workspace = true }
swimos_num = { path = "../swimos_num" }
swimos_num = { path = "../swimos_num", version = "0.1.0" }

[dev-dependencies]
tokio = { workspace = true, features = ["sync", "time", "rt", "macros"] }
Expand Down
2 changes: 1 addition & 1 deletion swimos_utilities/swimos_multi_reader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/swimos/swim-rust/"

[dependencies]
bytes = { workspace = true }
swimos_byte_channel = { path = "../swimos_byte_channel" }
swimos_byte_channel = { path = "../swimos_byte_channel", version = "0.1.0" }
parking_lot = { workspace = true }
waker-fn = { workspace = true }
slab = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion swimos_utilities/swimos_rtree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/swimos/swim-rust/"

[dependencies]
num = { workspace = true }
swimos_num = { path = "../swimos_num" }
swimos_num = { path = "../swimos_num", version = "0.1.0" }

[dev-dependencies]

2 changes: 1 addition & 1 deletion swimos_utilities/swimos_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository = "https://github.com/swimos/swim-rust/"
crossbeam-queue = { workspace = true }
futures = { workspace = true }
parking_lot = { workspace = true }
swimos_num = { path = "../swimos_num" }
swimos_num = { path = "../swimos_num", version = "0.1.0" }

[dev-dependencies]
futures = { workspace = true }
Expand Down

0 comments on commit 13dae76

Please sign in to comment.