Fix golgi import
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
notplants 2022-07-07 10:51:44 +02:00
parent 58bf306d3b
commit 7daab74b37
2 changed files with 4 additions and 23 deletions

25
Cargo.lock generated
View File

@ -1095,25 +1095,6 @@ dependencies = [
"sha2", "sha2",
] ]
[[package]]
name = "golgi"
version = "0.1.5"
source = "git+https://git.coopcloud.tech/golgi-ssb/golgi.git?branch=dev#414e8869f91974ae88431d74a8c8138e0a0ccdc6"
dependencies = [
"async-std",
"async-stream 0.3.3",
"base64 0.13.0",
"futures 0.3.21",
"hex",
"kuska-handshake",
"kuska-sodiumoxide",
"kuska-ssb",
"log 0.4.17",
"serde 1.0.137",
"serde_json",
"sha2",
]
[[package]] [[package]]
name = "h2" name = "h2"
version = "0.1.26" version = "0.1.26"
@ -2224,7 +2205,7 @@ dependencies = [
"async-std", "async-std",
"clap", "clap",
"env_logger 0.6.2", "env_logger 0.6.2",
"golgi 0.1.4", "golgi",
"lazy_static", "lazy_static",
"log 0.4.17", "log 0.4.17",
"peach-lib", "peach-lib",
@ -2266,7 +2247,7 @@ dependencies = [
"chrono", "chrono",
"dirs 4.0.0", "dirs 4.0.0",
"fslock", "fslock",
"golgi 0.1.5", "golgi",
"jsonrpc-client-core", "jsonrpc-client-core",
"jsonrpc-client-http", "jsonrpc-client-http",
"jsonrpc-core 8.0.1", "jsonrpc-core 8.0.1",
@ -2360,7 +2341,7 @@ dependencies = [
"dirs 4.0.0", "dirs 4.0.0",
"env_logger 0.8.4", "env_logger 0.8.4",
"futures 0.3.21", "futures 0.3.21",
"golgi 0.1.4", "golgi",
"lazy_static", "lazy_static",
"log 0.4.17", "log 0.4.17",
"maud", "maud",

View File

@ -9,7 +9,7 @@ async-std = "1.10"
chrono = "0.4" chrono = "0.4"
dirs = "4.0" dirs = "4.0"
fslock="0.1" fslock="0.1"
golgi = { git = "https://git.coopcloud.tech/golgi-ssb/golgi.git", branch = "dev" } golgi = { git = "https://git.coopcloud.tech/golgi-ssb/golgi.git" }
jsonrpc-client-core = "0.5" jsonrpc-client-core = "0.5"
jsonrpc-client-http = "0.5" jsonrpc-client-http = "0.5"
jsonrpc-core = "8.0" jsonrpc-core = "8.0"