Skip to content

Commit

Permalink
fix: compute crate version (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmorency authored Jul 13, 2023
1 parent 80ed183 commit 4bc2923
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 94 deletions.
2 changes: 1 addition & 1 deletion Cargo.Bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2557,7 +2557,7 @@ dependencies = [

[[package]]
name = "many-compute"
version = "0.1.0"
version = "0.1.4"
dependencies = [
"async-trait",
"clap 3.2.25",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions cargo-bazel-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"checksum": "508dd01984c9c5d81b8ec000b2108cd00bc2a2fab1b4faeb3c2ca0073347d49e",
"checksum": "bcd4565e80439e5c7ec7c3b7379ab9115ee8e9531460f3e3ecfe5075325ae40f",
"crates": {
"addr2line 0.20.0": {
"name": "addr2line",
Expand Down Expand Up @@ -13158,9 +13158,9 @@
},
"license": null
},
"many-compute 0.1.0": {
"many-compute 0.1.4": {
"name": "many-compute",
"version": "0.1.0",
"version": "0.1.4",
"repository": null,
"targets": [
{
Expand Down Expand Up @@ -13206,7 +13206,7 @@
"target": "json5"
},
{
"id": "many-compute 0.1.0",
"id": "many-compute 0.1.4",
"target": "build_script_build"
},
{
Expand Down Expand Up @@ -13258,7 +13258,7 @@
],
"selects": {}
},
"version": "0.1.0"
"version": "0.1.4"
},
"build_script_attrs": {
"data_glob": [
Expand Down Expand Up @@ -29801,7 +29801,7 @@
"many-cli-helpers 0.1.4": "src/many-cli-helpers",
"many-client 0.1.4": "src/many-client",
"many-client-macros 0.1.4": "src/many-client-macros",
"many-compute 0.1.0": "src/many-compute",
"many-compute 0.1.4": "src/many-compute",
"many-error 0.1.4": "src/many-error",
"many-identity 0.1.4": "src/many-identity",
"many-identity-dsa 0.1.4": "src/many-identity-dsa",
Expand Down
75 changes: 0 additions & 75 deletions src/many-compute/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
load("@crate_index//:defs.bzl", "aliases", "all_crate_deps")
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_test_suite")
load("@rules_rust//cargo:cargo_build_script.bzl", "cargo_build_script")
load("@io_bazel_rules_docker//rust:image.bzl", "rust_image")

package(default_visibility = [
"//:__pkg__",
Expand Down Expand Up @@ -40,77 +39,3 @@ rust_binary(
"//src/many-types",
],
)

#rust_library(
# name = "many-compute-lib-for-test",
# srcs = glob(include = ["src/**/*.rs"]),
# aliases = aliases(),
# crate_name = "many_compute",
# proc_macro_deps = all_crate_deps(
# proc_macro = True,
# proc_macro_dev = True,
# ),
# deps = all_crate_deps(
# normal = True,
# normal_dev = True,
# ) + [
# "//src/many-error",
# "//src/many-identity",
# "//src/many-identity-dsa",
# "//src/many-modules",
# "//src/many-protocol",
# "//src/many-server",
# "//src/many-server-cache",
# "//src/many-types",
# ],
#)

#rust_test_suite(
# name = "many-compute-test-suite",
# srcs = glob(include = ["tests/*.rs"]),
# compile_data = ["tests/common/mod.rs"],
# data = ["//staging:kvstore-staging"],
# proc_macro_deps = all_crate_deps(
# proc_macro = True,
# proc_macro_dev = True,
# ),
# deps = all_crate_deps(
# normal = True,
# normal_dev = True,
# ) + [
# ":many-kvstore-lib-for-test",
# "//src/many-error",
# "//src/many-identity",
# "//src/many-identity-dsa",
# "//src/many-modules",
# "//src/many-protocol",
# "//src/many-server",
# "//src/many-server-cache",
# "//src/many-types",
# ],
#)
#
#rust_image(
# name = "many-kvstore-image",
# srcs = glob(include = ["src/**/*.rs"]),
# aliases = aliases(),
# base = "//:ubuntu_image",
# proc_macro_deps = all_crate_deps(
# proc_macro = True,
# ),
# tags = ["manual"],
# deps = all_crate_deps(
# normal = True,
# ) + [
# ":build_script",
# "//src/many-cli-helpers",
# "//src/many-error",
# "//src/many-identity",
# "//src/many-identity-dsa",
# "//src/many-modules",
# "//src/many-protocol",
# "//src/many-server",
# "//src/many-server-cache",
# "//src/many-types",
# ],
#)
22 changes: 11 additions & 11 deletions src/many-compute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "many-compute"
version = "0.1.0"
version = "0.1.4" # managed by release.sh
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -11,16 +11,16 @@ clap = { version = "3.2.25", features = ["derive"] }
coset = "0.3.4"
hex = { version = "0.4.3", features = ["serde"] }
json5 = "0.4.1"
many-cli-helpers = { path = "../many-cli-helpers", version = "0.1.3" } # managed by release.sh
many-error = { path = "../many-error", version = "0.1.3" } # managed by release.sh
many-identity = { path = "../many-identity", features = ["default", "serde"], version = "0.1.3" } # managed by release.sh
many-identity-dsa = { path = "../many-identity-dsa", features = ["ed25519", "ecdsa"], version = "0.1.3" } # managed by release.sh
many-identity-webauthn = { path = "../many-identity-webauthn", version = "0.1.3" } # managed by release.sh
many-modules = { path = "../many-modules", version = "0.1.3" } # managed by release.sh
many-protocol = { path = "../many-protocol", version = "0.1.3" } # managed by release.sh
many-server = { path = "../many-server", version = "0.1.3" } # managed by release.sh
many-server-cache = { path = "../many-server-cache", version = "0.1.3" } # managed by release.sh
many-types = { path = "../many-types", version = "0.1.3" } # managed by release.sh
many-cli-helpers = { path = "../many-cli-helpers", version = "0.1.4" } # managed by release.sh
many-error = { path = "../many-error", version = "0.1.4" } # managed by release.sh
many-identity = { path = "../many-identity", features = ["default", "serde"], version = "0.1.4" } # managed by release.sh
many-identity-dsa = { path = "../many-identity-dsa", features = ["ed25519", "ecdsa"], version = "0.1.4" } # managed by release.sh
many-identity-webauthn = { path = "../many-identity-webauthn", version = "0.1.4" } # managed by release.sh
many-modules = { path = "../many-modules", version = "0.1.4" } # managed by release.sh
many-protocol = { path = "../many-protocol", version = "0.1.4" } # managed by release.sh
many-server = { path = "../many-server", version = "0.1.4" } # managed by release.sh
many-server-cache = { path = "../many-server-cache", version = "0.1.4" } # managed by release.sh
many-types = { path = "../many-types", version = "0.1.4" } # managed by release.sh
merk = { git = "/~https://github.com/liftedinit/merk.git", rev = "532eb097ec50f3553c5294971c152b4e7c7d4731" }
minicbor = { version = "0.19.1", features = ["derive", "std"] }
serde = "1.0"
Expand Down

0 comments on commit 4bc2923

Please sign in to comment.