fix bugsalot

This commit is contained in:
John Smith 2023-05-29 10:00:56 -04:00
parent 699c0db3db
commit 6ca7ec19f9
4 changed files with 6 additions and 21 deletions

21
Cargo.lock generated
View File

@ -767,19 +767,6 @@ dependencies = [
"cmake", "cmake",
] ]
[[package]]
name = "bugsalot"
version = "0.2.2"
dependencies = [
"libc",
]
[[package]]
name = "bugsalot"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc12a55e9bd3840279c248c96ecf541d5ba98d6654e08869fe167121384a582c"
[[package]] [[package]]
name = "bugsalot" name = "bugsalot"
version = "0.2.2" version = "0.2.2"
@ -1261,7 +1248,6 @@ dependencies = [
"ciborium", "ciborium",
"clap 3.2.25", "clap 3.2.25",
"criterion-plot", "criterion-plot",
"futures",
"itertools", "itertools",
"lazy_static", "lazy_static",
"num-traits", "num-traits",
@ -2883,7 +2869,6 @@ dependencies = [
name = "keyvaluedb-web" name = "keyvaluedb-web"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"async-lock",
"console_log", "console_log",
"flume", "flume",
"futures", "futures",
@ -6049,7 +6034,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"async-std", "async-std",
"async-tungstenite 0.8.0", "async-tungstenite 0.8.0",
"bugsalot 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "bugsalot",
"capnp", "capnp",
"capnp-rpc", "capnp-rpc",
"capnpc", "capnpc",
@ -6091,7 +6076,7 @@ dependencies = [
"async_executors", "async_executors",
"backtrace", "backtrace",
"blake3", "blake3",
"bugsalot 0.2.2 (git+https://github.com/crioux/bugsalot.git)", "bugsalot",
"capnp", "capnp",
"capnpc", "capnpc",
"cfg-if 1.0.0", "cfg-if 1.0.0",
@ -6215,7 +6200,7 @@ dependencies = [
"async-std", "async-std",
"async-tungstenite 0.22.1", "async-tungstenite 0.22.1",
"backtrace", "backtrace",
"bugsalot 0.2.2", "bugsalot",
"capnp", "capnp",
"capnp-rpc", "capnp-rpc",
"capnpc", "capnpc",

2
external/keyvaluedb vendored

@ -1 +1 @@
Subproject commit 9bb05a54b4c0278a289841b2bf7c1749aa0fbd5d Subproject commit 3408e0b2ae3df0088e0714bc23fb33c82a58e22c

View File

@ -38,7 +38,7 @@ cfg-if = "^1"
capnp = "^0" capnp = "^0"
capnp-rpc = "^0" capnp-rpc = "^0"
config = { version = "^0", features = ["yaml"] } config = { version = "^0", features = ["yaml"] }
bugsalot = "^0" bugsalot = { git = "https://github.com/crioux/bugsalot.git" }
flexi_logger = { version = "^0", features = ["use_chrono_for_offset"] } flexi_logger = { version = "^0", features = ["use_chrono_for_offset"] }
thiserror = "^1" thiserror = "^1"
crossbeam-channel = "^0" crossbeam-channel = "^0"

View File

@ -52,7 +52,7 @@ futures-util = { version = "^0", default_features = false, features = ["alloc"]
url = "^2" url = "^2"
ctrlc = "^3" ctrlc = "^3"
lazy_static = "^1" lazy_static = "^1"
bugsalot = { path = "../../bugsalot" } bugsalot = { git = "https://github.com/crioux/bugsalot.git" }
flume = { version = "^0", features = ["async"] } flume = { version = "^0", features = ["async"] }
rpassword = "^6" rpassword = "^6"
hostname = "^0" hostname = "^0"