From 90772728c22901751835f420d41c2859f5a1766e Mon Sep 17 00:00:00 2001 From: Christien Rioux Date: Sat, 2 Sep 2023 10:41:59 -0400 Subject: [PATCH] bumpversion fixes --- veilid-cli/Cargo.toml | 27 ++++++++++++++++++++------- veilid-core/Cargo.toml | 2 ++ veilid-flutter/pubspec.yaml | 2 ++ veilid-flutter/rust/Cargo.toml | 2 ++ veilid-python/pyproject.toml | 6 ++++-- veilid-server/Cargo.toml | 28 ++++++++++++++++++++++------ veilid-tools/Cargo.toml | 2 ++ veilid-wasm/Cargo.toml | 2 ++ 8 files changed, 56 insertions(+), 15 deletions(-) diff --git a/veilid-cli/Cargo.toml b/veilid-cli/Cargo.toml index a1238834..6cf6fbaa 100644 --- a/veilid-cli/Cargo.toml +++ b/veilid-cli/Cargo.toml @@ -1,6 +1,8 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-cli" version = "0.1.10" +# --- authors = ["Veilid Team "] edition = "2021" license = "MPL-2.0" @@ -10,16 +12,27 @@ name = "veilid-cli" path = "src/main.rs" [features] -default = [ "rt-tokio" ] -rt-async-std = [ "async-std", "veilid-tools/rt-async-std", "cursive/rt-async-std" ] -rt-tokio = [ "tokio", "tokio-util", "veilid-tools/rt-tokio", "cursive/rt-tokio" ] +default = ["rt-tokio"] +rt-async-std = [ + "async-std", + "veilid-tools/rt-async-std", + "cursive/rt-async-std", +] +rt-tokio = ["tokio", "tokio-util", "veilid-tools/rt-tokio", "cursive/rt-tokio"] [dependencies] -async-std = { version = "^1.9", features = ["unstable", "attributes"], optional = true } +async-std = { version = "^1.9", features = [ + "unstable", + "attributes", +], optional = true } tokio = { version = "^1", features = ["full"], optional = true } -tokio-util = { version = "^0", features = ["compat"], optional = true} +tokio-util = { version = "^0", features = ["compat"], optional = true } async-tungstenite = { version = "^0.8" } -cursive = { path = "../external/cursive/cursive", default-features = false, features = [ "crossterm", "toml", "ansi" ]} +cursive = { path = "../external/cursive/cursive", default-features = false, features = [ + "crossterm", + "toml", + "ansi", +] } cursive-flexi-logger-view = { path = "../external/cursive-flexi-logger-view" } cursive_buffered_backend = { path = "../external/cursive_buffered_backend" } # cursive-multiplex = "0.6.0" @@ -27,7 +40,7 @@ cursive_buffered_backend = { path = "../external/cursive_buffered_backend" } cursive_table_view = "0.14.0" arboard = "3.2.0" # cursive-tabs = "0.5.0" -clap = { version= "4", features = ["derive"] } +clap = { version = "4", features = ["derive"] } directories = "^4" log = "^0" futures = "^0" diff --git a/veilid-core/Cargo.toml b/veilid-core/Cargo.toml index 73b020c9..b5cc72b6 100644 --- a/veilid-core/Cargo.toml +++ b/veilid-core/Cargo.toml @@ -1,6 +1,8 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-core" version = "0.1.10" +# --- authors = ["Veilid Team "] edition = "2021" build = "build.rs" diff --git a/veilid-flutter/pubspec.yaml b/veilid-flutter/pubspec.yaml index a78c94ae..b2245b43 100644 --- a/veilid-flutter/pubspec.yaml +++ b/veilid-flutter/pubspec.yaml @@ -1,5 +1,7 @@ +# --- Bumpversion match - do not reorder name: veilid version: 0.1.10 +# --- description: Veilid Framework homepage: https://veilid.com publish_to: "none" # Remove this line if you wish to publish to pub.dev diff --git a/veilid-flutter/rust/Cargo.toml b/veilid-flutter/rust/Cargo.toml index efc6b757..3b7db991 100644 --- a/veilid-flutter/rust/Cargo.toml +++ b/veilid-flutter/rust/Cargo.toml @@ -1,6 +1,8 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-flutter" version = "0.1.10" +# --- authors = ["Veilid Team "] license = "MPL-2.0" edition = "2021" diff --git a/veilid-python/pyproject.toml b/veilid-python/pyproject.toml index 2bff5331..ebcd90c2 100644 --- a/veilid-python/pyproject.toml +++ b/veilid-python/pyproject.toml @@ -1,10 +1,12 @@ [tool.poetry] +# --- Bumpversion match - do not reorder name = "veilid" version = "0.1.10" +# --- description = "" authors = ["Veilid Team "] readme = "README.md" -packages = [{include = "veilid"}] +packages = [{ include = "veilid" }] [tool.poetry.dependencies] python = "^3.11" @@ -22,4 +24,4 @@ build-backend = "poetry.core.masonry.api" line-length = 99 [tool.mypy] -check_untyped_defs = true \ No newline at end of file +check_untyped_defs = true diff --git a/veilid-server/Cargo.toml b/veilid-server/Cargo.toml index 2f70f433..7753c5cd 100644 --- a/veilid-server/Cargo.toml +++ b/veilid-server/Cargo.toml @@ -1,7 +1,9 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-server" -description = "Veilid Server" version = "0.1.10" +# --- +description = "Veilid Server" authors = ["Veilid Team "] license = "MPL-2.0" edition = "2021" @@ -15,8 +17,20 @@ default = ["rt-tokio", "veilid-core/default"] crypto-test = ["rt-tokio", "veilid-core/crypto-test"] crypto-test-none = ["rt-tokio", "veilid-core/crypto-test-none"] -rt-async-std = ["veilid-core/rt-async-std", "async-std", "opentelemetry/rt-async-std", "opentelemetry-otlp/grpc-sys"] -rt-tokio = ["veilid-core/rt-tokio", "tokio", "tokio-stream", "tokio-util", "opentelemetry/rt-tokio", "console-subscriber"] +rt-async-std = [ + "veilid-core/rt-async-std", + "async-std", + "opentelemetry/rt-async-std", + "opentelemetry-otlp/grpc-sys", +] +rt-tokio = [ + "veilid-core/rt-tokio", + "tokio", + "tokio-stream", + "tokio-util", + "opentelemetry/rt-tokio", + "console-subscriber", +] tracking = ["veilid-core/tracking"] network-result-extra = ["veilid-core/network-result-extra"] @@ -34,11 +48,11 @@ async-std = { version = "^1", features = ["unstable"], optional = true } tokio = { version = "^1", features = ["full", "tracing"], optional = true } console-subscriber = { version = "^0", optional = true } tokio-stream = { version = "^0", features = ["net"], optional = true } -tokio-util = { version = "^0", features = ["compat"], optional = true} +tokio-util = { version = "^0", features = ["compat"], optional = true } async-tungstenite = { version = "^0", features = ["async-tls"] } color-eyre = { version = "^0", default-features = false } backtrace = "^0" -clap = { version= "4", features = ["derive", "string", "wrap_help"] } +clap = { version = "4", features = ["derive", "string", "wrap_help"] } directories = "^4" parking_lot = "^0" config = { version = "^0", features = ["yaml"] } @@ -47,7 +61,9 @@ serde = "^1" serde_derive = "^1" serde_yaml = "^0" json = "^0" -futures-util = { version = "^0", default_features = false, features = ["alloc"] } +futures-util = { version = "^0", default_features = false, features = [ + "alloc", +] } url = "^2" ctrlc = "^3" lazy_static = "^1" diff --git a/veilid-tools/Cargo.toml b/veilid-tools/Cargo.toml index 30f7adc6..c163566b 100644 --- a/veilid-tools/Cargo.toml +++ b/veilid-tools/Cargo.toml @@ -1,6 +1,8 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-tools" version = "0.1.10" +# --- authors = ["Veilid Team "] license = "MPL-2.0" edition = "2021" diff --git a/veilid-wasm/Cargo.toml b/veilid-wasm/Cargo.toml index bdcc10da..09608258 100644 --- a/veilid-wasm/Cargo.toml +++ b/veilid-wasm/Cargo.toml @@ -1,6 +1,8 @@ [package] +# --- Bumpversion match - do not reorder name = "veilid-wasm" version = "0.1.10" +# --- authors = ["Veilid Team "] license = "MPL-2.0" edition = "2021"