diff --git a/.github/workflows/pip-release.yml b/.github/workflows/pip-release.yml index 742defbc..805a6766 100644 --- a/.github/workflows/pip-release.yml +++ b/.github/workflows/pip-release.yml @@ -66,7 +66,7 @@ jobs: args: --release --out dist --zig manylinux: manylinux_2_28 working-directory: ${{ matrix.repository.path }} - before-script-linux: sudo apt-get install libatomic1-i386-cross libatomic1-armhf-cross && mkdir -p $HOME/.rustup/toolchains/1.84-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/ && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 $HOME/.rustup/toolchains/1.84-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/libatomic.so && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 $HOME/.rustup/toolchains/1.84-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/libatomic.so.1 && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 /opt/hostedtoolcache/Python/3.8.18/x64/lib/libatomic.so.1 && mkdir -p $HOME/.rustup/toolchains/1.84-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/ && ln -s /usr/arm-linux-gnueabihf/lib/libatomic.so.1 $HOME/.rustup/toolchains/1.84-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libatomic.so + before-script-linux: sudo apt-get install libatomic1-i386-cross libatomic1-armhf-cross && mkdir -p $HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/ && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 $HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/libatomic.so && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 $HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-unknown-linux-gnu/lib/libatomic.so.1 && ln -s /usr/i686-linux-gnu/lib/libatomic.so.1 /opt/hostedtoolcache/Python/3.8.18/x64/lib/libatomic.so.1 && mkdir -p $HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/ && ln -s /usr/arm-linux-gnueabihf/lib/libatomic.so.1 $HOME/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/armv7-unknown-linux-gnueabihf/lib/libatomic.so - name: Upload wheels if: github.event_name == 'release' uses: actions/upload-artifact@v4 diff --git a/Cargo.toml b/Cargo.toml index 9c433b1b..9d705ba2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,6 +49,7 @@ members = [ [workspace.package] edition = "2021" +rust-version = "1.85.0" # Make sure to also bump `apis/node/python/__init__.py` version. version = "0.3.12" description = "`dora` goal is to be a low latency, composable, and distributed data flow." @@ -97,6 +98,7 @@ serde_yaml = "0.9.33" [package] name = "dora-examples" +rust-version = "1.85.0" version = "0.0.0" edition.workspace = true license = "Apache-2.0" diff --git a/apis/c++/node/Cargo.toml b/apis/c++/node/Cargo.toml index 4084d42e..dcfbb2ef 100644 --- a/apis/c++/node/Cargo.toml +++ b/apis/c++/node/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-node-api-cxx" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/apis/c++/operator/Cargo.toml b/apis/c++/operator/Cargo.toml index ef5e3eda..b7733757 100644 --- a/apis/c++/operator/Cargo.toml +++ b/apis/c++/operator/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api-cxx" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/apis/c/node/Cargo.toml b/apis/c/node/Cargo.toml index fb3055b8..eb549897 100644 --- a/apis/c/node/Cargo.toml +++ b/apis/c/node/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-node-api-c" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true diff --git a/apis/c/operator/Cargo.toml b/apis/c/operator/Cargo.toml index 002b9180..e815b4b8 100644 --- a/apis/c/operator/Cargo.toml +++ b/apis/c/operator/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api-c" version.workspace = true edition.workspace = true +rust-version.workspace = true description = "C API implementation for Dora Operator" documentation.workspace = true license.workspace = true diff --git a/apis/python/node/Cargo.toml b/apis/python/node/Cargo.toml index 58832ffd..71999c20 100644 --- a/apis/python/node/Cargo.toml +++ b/apis/python/node/Cargo.toml @@ -2,6 +2,7 @@ version.workspace = true name = "dora-node-api-python" edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/apis/python/operator/Cargo.toml b/apis/python/operator/Cargo.toml index a65a929d..bc54f0de 100644 --- a/apis/python/operator/Cargo.toml +++ b/apis/python/operator/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api-python" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true diff --git a/apis/rust/node/Cargo.toml b/apis/rust/node/Cargo.toml index d1485b4b..39f618d2 100644 --- a/apis/rust/node/Cargo.toml +++ b/apis/rust/node/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-node-api" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/apis/rust/operator/Cargo.toml b/apis/rust/operator/Cargo.toml index d09281ad..82eb5107 100644 --- a/apis/rust/operator/Cargo.toml +++ b/apis/rust/operator/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/apis/rust/operator/macros/Cargo.toml b/apis/rust/operator/macros/Cargo.toml index 2ed58f76..46e59203 100644 --- a/apis/rust/operator/macros/Cargo.toml +++ b/apis/rust/operator/macros/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api-macros" version.workspace = true edition.workspace = true +rust-version.workspace = true description = "Rust API Macros for Dora Operator" documentation.workspace = true license.workspace = true diff --git a/apis/rust/operator/types/Cargo.toml b/apis/rust/operator/types/Cargo.toml index c52998c8..d178c4ba 100644 --- a/apis/rust/operator/types/Cargo.toml +++ b/apis/rust/operator/types/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-operator-api-types" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/binaries/cli/Cargo.toml b/binaries/cli/Cargo.toml index 7aa97db6..797fb9e0 100644 --- a/binaries/cli/Cargo.toml +++ b/binaries/cli/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-cli" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/binaries/coordinator/Cargo.toml b/binaries/coordinator/Cargo.toml index 67ea2d6c..a643e13d 100644 --- a/binaries/coordinator/Cargo.toml +++ b/binaries/coordinator/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-coordinator" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/binaries/daemon/Cargo.toml b/binaries/daemon/Cargo.toml index 423dba86..c9218d59 100644 --- a/binaries/daemon/Cargo.toml +++ b/binaries/daemon/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-daemon" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/binaries/runtime/Cargo.toml b/binaries/runtime/Cargo.toml index 73e6c615..f1d99d52 100644 --- a/binaries/runtime/Cargo.toml +++ b/binaries/runtime/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-runtime" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/examples/benchmark/node/Cargo.toml b/examples/benchmark/node/Cargo.toml index 5b616d8d..f593462f 100644 --- a/examples/benchmark/node/Cargo.toml +++ b/examples/benchmark/node/Cargo.toml @@ -2,6 +2,7 @@ name = "benchmark-example-node" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/benchmark/sink/Cargo.toml b/examples/benchmark/sink/Cargo.toml index b354e45a..154eacdb 100644 --- a/examples/benchmark/sink/Cargo.toml +++ b/examples/benchmark/sink/Cargo.toml @@ -2,6 +2,7 @@ name = "benchmark-example-sink" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/multiple-daemons/node/Cargo.toml b/examples/multiple-daemons/node/Cargo.toml index 1eca10bf..0d346729 100644 --- a/examples/multiple-daemons/node/Cargo.toml +++ b/examples/multiple-daemons/node/Cargo.toml @@ -2,6 +2,7 @@ name = "multiple-daemons-example-node" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/multiple-daemons/operator/Cargo.toml b/examples/multiple-daemons/operator/Cargo.toml index 393de57c..043a4a22 100644 --- a/examples/multiple-daemons/operator/Cargo.toml +++ b/examples/multiple-daemons/operator/Cargo.toml @@ -2,6 +2,7 @@ name = "multiple-daemons-example-operator" version.workspace = true edition.workspace = true +rust-version.workspace = true license.workspace = true publish = false diff --git a/examples/multiple-daemons/sink/Cargo.toml b/examples/multiple-daemons/sink/Cargo.toml index 986819a7..46fec3ee 100644 --- a/examples/multiple-daemons/sink/Cargo.toml +++ b/examples/multiple-daemons/sink/Cargo.toml @@ -2,6 +2,7 @@ name = "multiple-daemons-example-sink" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/rust-dataflow-url/sink/Cargo.toml b/examples/rust-dataflow-url/sink/Cargo.toml index 1e696d21..b3d4342c 100644 --- a/examples/rust-dataflow-url/sink/Cargo.toml +++ b/examples/rust-dataflow-url/sink/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "rust-dataflow-url-example-sink" version.workspace = true +rust-version.workspace = true edition.workspace = true publish = false diff --git a/examples/rust-dataflow/node/Cargo.toml b/examples/rust-dataflow/node/Cargo.toml index 6a3f68bb..2d85aa78 100644 --- a/examples/rust-dataflow/node/Cargo.toml +++ b/examples/rust-dataflow/node/Cargo.toml @@ -2,6 +2,7 @@ name = "rust-dataflow-example-node" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/rust-dataflow/sink-dynamic/Cargo.toml b/examples/rust-dataflow/sink-dynamic/Cargo.toml index a15a39a3..31b25e49 100644 --- a/examples/rust-dataflow/sink-dynamic/Cargo.toml +++ b/examples/rust-dataflow/sink-dynamic/Cargo.toml @@ -2,6 +2,7 @@ name = "rust-dataflow-example-sink-dynamic" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/rust-dataflow/sink/Cargo.toml b/examples/rust-dataflow/sink/Cargo.toml index 0b73e81b..28607308 100644 --- a/examples/rust-dataflow/sink/Cargo.toml +++ b/examples/rust-dataflow/sink/Cargo.toml @@ -2,6 +2,7 @@ name = "rust-dataflow-example-sink" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/examples/rust-dataflow/status-node/Cargo.toml b/examples/rust-dataflow/status-node/Cargo.toml index 98e63802..8edb87e2 100644 --- a/examples/rust-dataflow/status-node/Cargo.toml +++ b/examples/rust-dataflow/status-node/Cargo.toml @@ -2,6 +2,7 @@ name = "rust-dataflow-example-status-node" version.workspace = true edition.workspace = true +rust-version.workspace = true license.workspace = true publish = false diff --git a/examples/rust-ros2-dataflow/node/Cargo.toml b/examples/rust-ros2-dataflow/node/Cargo.toml index eb3fc1c4..464cce8c 100644 --- a/examples/rust-ros2-dataflow/node/Cargo.toml +++ b/examples/rust-ros2-dataflow/node/Cargo.toml @@ -2,6 +2,7 @@ name = "rust-ros2-dataflow-example-node" version.workspace = true edition.workspace = true +rust-version.workspace = true publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libraries/arrow-convert/Cargo.toml b/libraries/arrow-convert/Cargo.toml index d180dc40..58146c59 100644 --- a/libraries/arrow-convert/Cargo.toml +++ b/libraries/arrow-convert/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-arrow-convert" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/communication-layer/pub-sub/Cargo.toml b/libraries/communication-layer/pub-sub/Cargo.toml index 69df1048..7e08d60c 100644 --- a/libraries/communication-layer/pub-sub/Cargo.toml +++ b/libraries/communication-layer/pub-sub/Cargo.toml @@ -2,6 +2,7 @@ name = "communication-layer-pub-sub" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/communication-layer/request-reply/Cargo.toml b/libraries/communication-layer/request-reply/Cargo.toml index 2edaf313..522dec2f 100644 --- a/libraries/communication-layer/request-reply/Cargo.toml +++ b/libraries/communication-layer/request-reply/Cargo.toml @@ -2,6 +2,7 @@ name = "communication-layer-request-reply" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/core/Cargo.toml b/libraries/core/Cargo.toml index 41f2e112..26ce9795 100644 --- a/libraries/core/Cargo.toml +++ b/libraries/core/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-core" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/extensions/download/Cargo.toml b/libraries/extensions/download/Cargo.toml index aafb22d1..45f839f7 100644 --- a/libraries/extensions/download/Cargo.toml +++ b/libraries/extensions/download/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-download" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/extensions/ros2-bridge/Cargo.toml b/libraries/extensions/ros2-bridge/Cargo.toml index b2cc901b..e19a1a95 100644 --- a/libraries/extensions/ros2-bridge/Cargo.toml +++ b/libraries/extensions/ros2-bridge/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-ros2-bridge" version.workspace = true edition.workspace = true +rust-version.workspace = true license.workspace = true description = "ROS2 bridge for dora-rs" links = "dora-ros2-bridge" diff --git a/libraries/extensions/ros2-bridge/msg-gen/Cargo.toml b/libraries/extensions/ros2-bridge/msg-gen/Cargo.toml index 6af32637..85f7fad3 100644 --- a/libraries/extensions/ros2-bridge/msg-gen/Cargo.toml +++ b/libraries/extensions/ros2-bridge/msg-gen/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "dora-ros2-bridge-msg-gen" version.workspace = true +rust-version.workspace = true edition.workspace = true description = "Message generation for ROS2 bridge" authors = ["Yuma Hiramatsu "] diff --git a/libraries/extensions/ros2-bridge/python/Cargo.toml b/libraries/extensions/ros2-bridge/python/Cargo.toml index b9253fb7..f78b5303 100644 --- a/libraries/extensions/ros2-bridge/python/Cargo.toml +++ b/libraries/extensions/ros2-bridge/python/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "dora-ros2-bridge-python" version.workspace = true +rust-version.workspace = true edition.workspace = true - [dependencies] dora-ros2-bridge = { path = "..", default-features = false } dora-ros2-bridge-msg-gen = { path = "../msg-gen" } diff --git a/libraries/extensions/telemetry/metrics/Cargo.toml b/libraries/extensions/telemetry/metrics/Cargo.toml index 8d52fac3..a0627272 100644 --- a/libraries/extensions/telemetry/metrics/Cargo.toml +++ b/libraries/extensions/telemetry/metrics/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-metrics" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/extensions/telemetry/tracing/Cargo.toml b/libraries/extensions/telemetry/tracing/Cargo.toml index 9c795c8d..e0cd11f7 100644 --- a/libraries/extensions/telemetry/tracing/Cargo.toml +++ b/libraries/extensions/telemetry/tracing/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-tracing" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/libraries/message/Cargo.toml b/libraries/message/Cargo.toml index 41f6ee20..3457d22a 100644 --- a/libraries/message/Cargo.toml +++ b/libraries/message/Cargo.toml @@ -3,12 +3,12 @@ name = "dora-message" # versioned separately from the other dora crates version = "0.5.0" edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true repository.workspace = true - # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/libraries/shared-memory-server/Cargo.toml b/libraries/shared-memory-server/Cargo.toml index 4ec3ce59..a6ce14ee 100644 --- a/libraries/shared-memory-server/Cargo.toml +++ b/libraries/shared-memory-server/Cargo.toml @@ -2,6 +2,7 @@ name = "shared-memory-server" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/node-hub/dora-dav1d/Cargo.toml b/node-hub/dora-dav1d/Cargo.toml index 8f5f6b46..5b925ce0 100644 --- a/node-hub/dora-dav1d/Cargo.toml +++ b/node-hub/dora-dav1d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dora-dav1d" -edition = "2021" +edition.workspace = true license = "BSD-2-Clause" version.workspace = true diff --git a/node-hub/dora-kit-car/Cargo.toml b/node-hub/dora-kit-car/Cargo.toml index 54d125b8..1073922d 100644 --- a/node-hub/dora-kit-car/Cargo.toml +++ b/node-hub/dora-kit-car/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "dora-kit-car" edition.workspace = true +rust-version.workspace = true version.workspace = true description.workspace = true documentation.workspace = true diff --git a/node-hub/dora-object-to-pose/Cargo.toml b/node-hub/dora-object-to-pose/Cargo.toml index e858893a..9988d0d5 100644 --- a/node-hub/dora-object-to-pose/Cargo.toml +++ b/node-hub/dora-object-to-pose/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "dora-object-to-pose" -version = "0.3.12" -edition = "2021" +version.workspace = true +rust-version.workspace = true +edition.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/node-hub/dora-rav1e/Cargo.toml b/node-hub/dora-rav1e/Cargo.toml index b71cf93e..946dd1a7 100644 --- a/node-hub/dora-rav1e/Cargo.toml +++ b/node-hub/dora-rav1e/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "dora-rav1e" -edition = "2021" -version = "0.3.12" +edition.workspace = true +rust-version.workspace = true +version.workspace = true description.workspace = true documentation.workspace = true license = "BSD-2-Clause" diff --git a/node-hub/dora-record/Cargo.toml b/node-hub/dora-record/Cargo.toml index 60497573..0b0b0fad 100644 --- a/node-hub/dora-record/Cargo.toml +++ b/node-hub/dora-record/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-record" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/node-hub/dora-rerun/Cargo.toml b/node-hub/dora-rerun/Cargo.toml index 2070f90d..a4b27bf4 100644 --- a/node-hub/dora-rerun/Cargo.toml +++ b/node-hub/dora-rerun/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-rerun" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/node-hub/dora-rustypot/Cargo.toml b/node-hub/dora-rustypot/Cargo.toml index 4a0832bd..85571fba 100644 --- a/node-hub/dora-rustypot/Cargo.toml +++ b/node-hub/dora-rustypot/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "dora-rustypot" version = "0.1.0" -edition = "2021" +edition.workspace = true +rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/node-hub/openai-proxy-server/Cargo.toml b/node-hub/openai-proxy-server/Cargo.toml index a0c8330b..7f95080f 100644 --- a/node-hub/openai-proxy-server/Cargo.toml +++ b/node-hub/openai-proxy-server/Cargo.toml @@ -2,6 +2,7 @@ name = "dora-openai-proxy-server" version.workspace = true edition.workspace = true +rust-version.workspace = true documentation.workspace = true description.workspace = true license.workspace = true diff --git a/node-hub/terminal-print/Cargo.toml b/node-hub/terminal-print/Cargo.toml index fa6adb14..fe2b7544 100644 --- a/node-hub/terminal-print/Cargo.toml +++ b/node-hub/terminal-print/Cargo.toml @@ -2,6 +2,7 @@ name = "terminal-print" edition.workspace = true version.workspace = true +rust-version.workspace = true description.workspace = true documentation.workspace = true license.workspace = true diff --git a/rust-toolchain.toml b/rust-toolchain.toml deleted file mode 100644 index ce2ca464..00000000 --- a/rust-toolchain.toml +++ /dev/null @@ -1,3 +0,0 @@ -[toolchain] -channel = "1.84" -components = ["rustfmt", "clippy"] diff --git a/tests/queue_size_latest_data_rust/receive_data/Cargo.toml b/tests/queue_size_latest_data_rust/receive_data/Cargo.toml index 580ac98f..1c2e7f57 100644 --- a/tests/queue_size_latest_data_rust/receive_data/Cargo.toml +++ b/tests/queue_size_latest_data_rust/receive_data/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "receive_data" edition.workspace = true +rust-version.workspace = true version.workspace = true description.workspace = true documentation.workspace = true