Fix aw-server revision

This commit is contained in:
Demmie 2023-06-05 02:00:59 -04:00
parent 63b8079aa8
commit 8fe8847002
No known key found for this signature in database
GPG Key ID: B06DAA3D432C6E9A
2 changed files with 11 additions and 12 deletions

19
Cargo.lock generated
View File

@ -304,10 +304,10 @@ dependencies = [
[[package]]
name = "aw-datastore"
version = "0.1.0"
source = "git+https://github.com/2e3s/aw-server-rust?rev=b967a56#b967a5643004806b6daaba36e083a504320ad983"
source = "git+https://github.com/2e3s/aw-server-rust?rev=1c23a55#1c23a55df9f857b3bb50098e88c3458c2d047cd7"
dependencies = [
"appdirs",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=b967a56)",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=1c23a55)",
"aw-transform",
"chrono",
"log",
@ -320,7 +320,7 @@ dependencies = [
[[package]]
name = "aw-models"
version = "0.1.0"
source = "git+https://github.com/2e3s/aw-server-rust?rev=b967a56#b967a5643004806b6daaba36e083a504320ad983"
source = "git+https://github.com/2e3s/aw-server-rust?rev=1c23a55#1c23a55df9f857b3bb50098e88c3458c2d047cd7"
dependencies = [
"chrono",
"log",
@ -344,10 +344,10 @@ dependencies = [
[[package]]
name = "aw-query"
version = "0.1.0"
source = "git+https://github.com/2e3s/aw-server-rust?rev=b967a56#b967a5643004806b6daaba36e083a504320ad983"
source = "git+https://github.com/2e3s/aw-server-rust?rev=1c23a55#1c23a55df9f857b3bb50098e88c3458c2d047cd7"
dependencies = [
"aw-datastore",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=b967a56)",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=1c23a55)",
"aw-transform",
"chrono",
"fancy-regex",
@ -360,12 +360,12 @@ dependencies = [
[[package]]
name = "aw-server"
version = "0.12.1"
source = "git+https://github.com/2e3s/aw-server-rust?rev=b967a56#b967a5643004806b6daaba36e083a504320ad983"
source = "git+https://github.com/2e3s/aw-server-rust?rev=1c23a55#1c23a55df9f857b3bb50098e88c3458c2d047cd7"
dependencies = [
"android_logger",
"appdirs",
"aw-datastore",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=b967a56)",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=1c23a55)",
"aw-query",
"aw-transform",
"chrono",
@ -392,9 +392,9 @@ dependencies = [
[[package]]
name = "aw-transform"
version = "0.1.0"
source = "git+https://github.com/2e3s/aw-server-rust?rev=b967a56#b967a5643004806b6daaba36e083a504320ad983"
source = "git+https://github.com/2e3s/aw-server-rust?rev=1c23a55#1c23a55df9f857b3bb50098e88c3458c2d047cd7"
dependencies = [
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=b967a56)",
"aw-models 0.1.0 (git+https://github.com/2e3s/aw-server-rust?rev=1c23a55)",
"chrono",
"fancy-regex",
"log",
@ -2788,7 +2788,6 @@ version = "6.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b68543d5527e158213414a92832d2aab11a84d2571a5eb021ebe22c43aab066"
dependencies = [
"rocket",
"rust-embed-impl",
"rust-embed-utils",
"walkdir",

View File

@ -34,8 +34,8 @@ anyhow = { workspace = true }
signal-hook = "0.3.15"
ksni = {version = "0.2.0", optional = true}
aw-server = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "b967a56" }
aw-datastore = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "b967a56" }
aw-server = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "1c23a55" }
aw-datastore = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "1c23a55" }
open = { version = "4.1.0", optional = true }
rust-embed = { version = "6.6.1", features = ["interpolate-folder-path"] }
tokio = { version = "1.28.2", optional = true }