mirror of
https://github.com/2e3s/awatcher.git
synced 2025-06-06 19:45:30 +00:00
Adjust AW dependencies source
This commit is contained in:
parent
a76f6e3e5b
commit
214ff1c06e
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -401,7 +401,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-client-rust"
|
name = "aw-client-rust"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aw-models",
|
"aw-models",
|
||||||
"chrono",
|
"chrono",
|
||||||
@ -415,7 +415,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-datastore"
|
name = "aw-datastore"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"appdirs",
|
"appdirs",
|
||||||
"aw-models",
|
"aw-models",
|
||||||
@ -431,7 +431,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-models"
|
name = "aw-models"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"log",
|
"log",
|
||||||
@ -443,7 +443,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-query"
|
name = "aw-query"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aw-datastore",
|
"aw-datastore",
|
||||||
"aw-models",
|
"aw-models",
|
||||||
@ -459,7 +459,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-server"
|
name = "aw-server"
|
||||||
version = "0.13.1"
|
version = "0.13.1"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"android_logger",
|
"android_logger",
|
||||||
"appdirs",
|
"appdirs",
|
||||||
@ -490,7 +490,7 @@ dependencies = [
|
|||||||
[[package]]
|
[[package]]
|
||||||
name = "aw-transform"
|
name = "aw-transform"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/2e3s/aw-server-rust?rev=83958b7#83958b741b1bf471bf572aab31ee5bea5ed2228b"
|
source = "git+https://github.com/ActivityWatch/aw-server-rust?rev=bb787fd#bb787fdaa39a8b9683814686791a048b9f682877"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aw-models",
|
"aw-models",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -41,8 +41,8 @@ anyhow = { workspace = true }
|
|||||||
tokio = { workspace = true, features = ["rt", "macros", "signal"] }
|
tokio = { workspace = true, features = ["rt", "macros", "signal"] }
|
||||||
|
|
||||||
ksni = {version = "0.2.2", optional = true}
|
ksni = {version = "0.2.2", optional = true}
|
||||||
aw-server = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "83958b7" }
|
aw-server = { git = "https://github.com/ActivityWatch/aw-server-rust", optional = true, rev = "bb787fd" }
|
||||||
aw-datastore = { git = "https://github.com/2e3s/aw-server-rust", optional = true, rev = "83958b7" }
|
aw-datastore = { git = "https://github.com/ActivityWatch/aw-server-rust", optional = true, rev = "bb787fd" }
|
||||||
open = { version = "5.1.3", optional = true }
|
open = { version = "5.1.3", optional = true }
|
||||||
serde = { workspace = true, optional = true }
|
serde = { workspace = true, optional = true }
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ rstest = "0.21.0"
|
|||||||
tempfile = "3.10.1"
|
tempfile = "3.10.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aw-client-rust = { git = "https://github.com/2e3s/aw-server-rust", rev = "83958b7" }
|
aw-client-rust = { git = "https://github.com/ActivityWatch/aw-server-rust", rev = "bb787fd" }
|
||||||
wayland-client = "0.31.1"
|
wayland-client = "0.31.1"
|
||||||
wayland-protocols = { version = "0.31.2", features = ["staging", "client" ]}
|
wayland-protocols = { version = "0.31.2", features = ["staging", "client" ]}
|
||||||
wayland-protocols-plasma = { version = "0.2.0", features = ["client"] }
|
wayland-protocols-plasma = { version = "0.2.0", features = ["client"] }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user