mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
bumpversion fixes
This commit is contained in:
parent
a78b57c144
commit
90772728c2
@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-cli"
|
name = "veilid-cli"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
@ -10,16 +12,27 @@ name = "veilid-cli"
|
|||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "rt-tokio" ]
|
default = ["rt-tokio"]
|
||||||
rt-async-std = [ "async-std", "veilid-tools/rt-async-std", "cursive/rt-async-std" ]
|
rt-async-std = [
|
||||||
rt-tokio = [ "tokio", "tokio-util", "veilid-tools/rt-tokio", "cursive/rt-tokio" ]
|
"async-std",
|
||||||
|
"veilid-tools/rt-async-std",
|
||||||
|
"cursive/rt-async-std",
|
||||||
|
]
|
||||||
|
rt-tokio = ["tokio", "tokio-util", "veilid-tools/rt-tokio", "cursive/rt-tokio"]
|
||||||
|
|
||||||
[dependencies]
|
[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 = { 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" }
|
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-flexi-logger-view = { path = "../external/cursive-flexi-logger-view" }
|
||||||
cursive_buffered_backend = { path = "../external/cursive_buffered_backend" }
|
cursive_buffered_backend = { path = "../external/cursive_buffered_backend" }
|
||||||
# cursive-multiplex = "0.6.0"
|
# cursive-multiplex = "0.6.0"
|
||||||
@ -27,7 +40,7 @@ cursive_buffered_backend = { path = "../external/cursive_buffered_backend" }
|
|||||||
cursive_table_view = "0.14.0"
|
cursive_table_view = "0.14.0"
|
||||||
arboard = "3.2.0"
|
arboard = "3.2.0"
|
||||||
# cursive-tabs = "0.5.0"
|
# cursive-tabs = "0.5.0"
|
||||||
clap = { version= "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
directories = "^4"
|
directories = "^4"
|
||||||
log = "^0"
|
log = "^0"
|
||||||
futures = "^0"
|
futures = "^0"
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-core"
|
name = "veilid-core"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name: veilid
|
name: veilid
|
||||||
version: 0.1.10
|
version: 0.1.10
|
||||||
|
# ---
|
||||||
description: Veilid Framework
|
description: Veilid Framework
|
||||||
homepage: https://veilid.com
|
homepage: https://veilid.com
|
||||||
publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-flutter"
|
name = "veilid-flutter"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid"
|
name = "veilid"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
packages = [{include = "veilid"}]
|
packages = [{ include = "veilid" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
@ -22,4 +24,4 @@ build-backend = "poetry.core.masonry.api"
|
|||||||
line-length = 99
|
line-length = 99
|
||||||
|
|
||||||
[tool.mypy]
|
[tool.mypy]
|
||||||
check_untyped_defs = true
|
check_untyped_defs = true
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-server"
|
name = "veilid-server"
|
||||||
description = "Veilid Server"
|
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
|
description = "Veilid Server"
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
@ -15,8 +17,20 @@ default = ["rt-tokio", "veilid-core/default"]
|
|||||||
crypto-test = ["rt-tokio", "veilid-core/crypto-test"]
|
crypto-test = ["rt-tokio", "veilid-core/crypto-test"]
|
||||||
crypto-test-none = ["rt-tokio", "veilid-core/crypto-test-none"]
|
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-async-std = [
|
||||||
rt-tokio = ["veilid-core/rt-tokio", "tokio", "tokio-stream", "tokio-util", "opentelemetry/rt-tokio", "console-subscriber"]
|
"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"]
|
tracking = ["veilid-core/tracking"]
|
||||||
network-result-extra = ["veilid-core/network-result-extra"]
|
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 }
|
tokio = { version = "^1", features = ["full", "tracing"], optional = true }
|
||||||
console-subscriber = { version = "^0", optional = true }
|
console-subscriber = { version = "^0", optional = true }
|
||||||
tokio-stream = { version = "^0", features = ["net"], 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"] }
|
async-tungstenite = { version = "^0", features = ["async-tls"] }
|
||||||
color-eyre = { version = "^0", default-features = false }
|
color-eyre = { version = "^0", default-features = false }
|
||||||
backtrace = "^0"
|
backtrace = "^0"
|
||||||
clap = { version= "4", features = ["derive", "string", "wrap_help"] }
|
clap = { version = "4", features = ["derive", "string", "wrap_help"] }
|
||||||
directories = "^4"
|
directories = "^4"
|
||||||
parking_lot = "^0"
|
parking_lot = "^0"
|
||||||
config = { version = "^0", features = ["yaml"] }
|
config = { version = "^0", features = ["yaml"] }
|
||||||
@ -47,7 +61,9 @@ serde = "^1"
|
|||||||
serde_derive = "^1"
|
serde_derive = "^1"
|
||||||
serde_yaml = "^0"
|
serde_yaml = "^0"
|
||||||
json = "^0"
|
json = "^0"
|
||||||
futures-util = { version = "^0", default_features = false, features = ["alloc"] }
|
futures-util = { version = "^0", default_features = false, features = [
|
||||||
|
"alloc",
|
||||||
|
] }
|
||||||
url = "^2"
|
url = "^2"
|
||||||
ctrlc = "^3"
|
ctrlc = "^3"
|
||||||
lazy_static = "^1"
|
lazy_static = "^1"
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-tools"
|
name = "veilid-tools"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
|
# --- Bumpversion match - do not reorder
|
||||||
name = "veilid-wasm"
|
name = "veilid-wasm"
|
||||||
version = "0.1.10"
|
version = "0.1.10"
|
||||||
|
# ---
|
||||||
authors = ["Veilid Team <contact@veilid.com>"]
|
authors = ["Veilid Team <contact@veilid.com>"]
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
Loading…
Reference in New Issue
Block a user