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

This commit is contained in:
notplants 2022-07-06 12:39:55 +02:00
parent 1fab4f3c43
commit f1ab2caa08
4 changed files with 8 additions and 27 deletions

26
Cargo.lock generated
View File

@ -1079,25 +1079,7 @@ dependencies = [
[[package]]
name = "golgi"
version = "0.1.4"
source = "git+https://git.coopcloud.tech/golgi-ssb/golgi.git#ca4c1114ddf328b818144c5a1af0187b1357e9be"
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]]
name = "golgi"
version = "0.1.5"
source = "git+https://git.coopcloud.tech/golgi-ssb/golgi#ca4c1114ddf328b818144c5a1af0187b1357e9be"
dependencies = [
"async-std",
"async-stream 0.3.3",
@ -2223,7 +2205,7 @@ dependencies = [
"async-std",
"clap",
"env_logger 0.6.2",
"golgi 0.1.5",
"golgi",
"lazy_static",
"log 0.4.17",
"peach-lib",
@ -2265,7 +2247,7 @@ dependencies = [
"chrono",
"dirs 4.0.0",
"fslock",
"golgi 0.1.5",
"golgi",
"jsonrpc-client-core",
"jsonrpc-client-http",
"jsonrpc-core 8.0.1",
@ -2359,7 +2341,7 @@ dependencies = [
"dirs 4.0.0",
"env_logger 0.8.4",
"futures 0.3.21",
"golgi 0.1.4",
"golgi",
"lazy_static",
"log 0.4.17",
"maud",

View File

@ -37,6 +37,5 @@ log = "0.4"
lazy_static = "1.4.0"
peach-lib = { path = "../peach-lib" }
rpassword = "5.0"
#golgi = { git = "https://git.coopcloud.tech/golgi-ssb/golgi.git" }
golgi = { path = "../../golgi" }
golgi = { git = "https://git.coopcloud.tech/golgi-ssb/golgi.git" }
async-std = "1.10.0"

View File

@ -57,7 +57,8 @@ enum PeachConfig {
#[structopt(name = "whoami")]
WhoAmI,
/// Publish domain and port
/// Publish domain and port.
/// It takes an address argument of the form host:port
#[structopt(name = "publish-address")]
PublishAddress(PublishAddressOpts),
}

View File

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