prepare for bastion publish

This commit is contained in:
o0Ignition0o 2022-01-07 21:32:05 +01:00
parent cd14080862
commit 2703b5280d
2 changed files with 12 additions and 13 deletions

View File

@ -28,8 +28,8 @@ tokio-runtime = ["tokio"]
[dependencies]
bastion-utils = "0.3.2"
lightproc = "0.3"
# lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
# lightproc = "0.3"
lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
# lightproc = { path = "../lightproc" }
# bastion-utils = { path = "../bastion-utils" }

View File

@ -5,7 +5,7 @@ name = "bastion"
# - Update CHANGELOG.md.
# - npm install -g auto-changelog && auto-changelog at the root
# - Create "v0.x.y" git tag at the root of the project.
version = "0.4.5-alpha.0"
version = "0.4.5"
description = "Fault-tolerant Runtime for Rust applications"
authors = ["Mahmut Bulut <vertexclique@gmail.com>"]
keywords = ["fault-tolerant", "runtime", "actor", "system"]
@ -29,7 +29,7 @@ exclude = [
"*.dot",
"*.yml",
"*.toml",
"*.md"
"*.md",
]
[badges]
@ -38,9 +38,7 @@ maintenance = { status = "actively-developed" }
[features]
default = []
unstable = ["bastion-executor/unstable"]
distributed = [
"artillery-core"
]
distributed = ["artillery-core"]
scaling = []
docs = ["distributed", "scaling", "default"]
tokio-runtime = ["bastion-executor/tokio-runtime"]
@ -50,10 +48,11 @@ features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[dependencies]
bastion-executor = { git = "https://github.com/bastion-rs/bastion.git" }
bastion-executor = "0.4.2"
# bastion-executor = { git = "https://github.com/bastion-rs/bastion.git" }
# bastion-executor = { path = "../bastion-executor" }
lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
# lightproc = "0.3"
# lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
lightproc = "0.3"
# lightproc = { path = "../lightproc" }
lever = "0.1"
@ -77,7 +76,7 @@ tracing = "0.1.15"
anyhow = "1.0"
crossbeam-queue = "0.3.0"
log = "0.4.14"
lasso = {version = "0.6", features = ["multi-threaded"] }
lasso = { version = "0.6", features = ["multi-threaded"] }
once_cell = "1.7.2"
thiserror = "1.0.24"
@ -94,8 +93,8 @@ rand = "0.8"
rayon = "1.3.1"
num_cpus = "1.13.0"
# hello_tokio example
tokio = { version="1.1", features = ["time", "macros"] }
tokio = { version = "1.1", features = ["time", "macros"] }
# bastion-executor = { path = "../bastion-executor" }
bastion-executor = { git = "https://github.com/bastion-rs/bastion.git" }
# bastion-executor = { git = "https://github.com/bastion-rs/bastion.git" }
once_cell = "1.5.2"
tokio-test = "0.4.0"