Compare commits

...

3 Commits

Author SHA1 Message Date
o0Ignition0o 48d4c73edb start iteration 0.4.6-alpha.0 2022-01-07 21:38:17 +01:00
o0Ignition0o 2703b5280d prepare for bastion publish 2022-01-07 21:32:09 +01:00
o0Ignition0o cd14080862 bastion-executor: prepare for release 0.4.2 2022-01-07 21:28:08 +01:00
2 changed files with 18 additions and 18 deletions

View File

@ -5,7 +5,7 @@ name = "bastion-executor"
# - 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.1"
version = "0.4.2"
description = "Cache affine NUMA-aware executor for Rust"
authors = ["Mahmut Bulut <vertexclique@gmail.com>"]
keywords = ["fault-tolerant", "runtime", "actor", "system"]
@ -16,9 +16,7 @@ documentation = "https://docs.rs/bastion"
readme = "README.md"
license = "Apache-2.0/MIT"
edition = "2018"
exclude = [
"scripts/*",
]
exclude = ["scripts/*"]
[badges]
travis-ci = { repository = "bastion-rs/bastion", branch = "master" }
@ -31,7 +29,7 @@ tokio-runtime = ["tokio"]
[dependencies]
bastion-utils = "0.3.2"
# lightproc = "0.3"
lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
lightproc = { git = "https://github.com/bastion-rs/bastion.git" }
# lightproc = { path = "../lightproc" }
# bastion-utils = { path = "../bastion-utils" }
@ -52,13 +50,16 @@ tracing = "0.1.19"
crossbeam-queue = "0.3.0"
# Feature tokio
tokio = {version = "1.1", features = ["rt", "rt-multi-thread"], optional = true }
tokio = { version = "1.1", features = [
"rt",
"rt-multi-thread",
], optional = true }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "^0.3.8", features = ["basetsd"] }
[dev-dependencies]
tokio = {version = "1.1", features = ["rt", "rt-multi-thread", "macros"] }
tokio = { version = "1.1", features = ["rt", "rt-multi-thread", "macros"] }
tokio-test = "0.4.0"
proptest = "^1.0"
futures = "0.3.5"

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.6-alpha.0"
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"