-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from rneswold/pull-request
prep for v0.4.0
- Loading branch information
Showing
13 changed files
with
327 additions
and
500 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-db-redis" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
description = "Redis backend for DrMem control system" | ||
|
@@ -35,8 +35,8 @@ serde_derive.workspace = true | |
|
||
palette.workspace = true | ||
|
||
redis.version = "0.22" | ||
redis.version = "0.25" | ||
redis.default-features = false | ||
redis.features = ["tokio-comp", "streams"] | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "drmem-db-simple" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
edition = "2021" | ||
description = "Simple backend for DrMem control system" | ||
homepage = "https://github.com/DrMemCS/drmem" | ||
|
@@ -31,7 +31,7 @@ tracing.workspace = true | |
serde.workspace = true | ||
serde_derive.workspace = true | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } | ||
|
||
[dev-dependencies] | ||
tokio-stream = { workspace = true, features = ["sync", "time"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-drv-ntp" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/DrMemCS/drmem" | ||
|
@@ -21,4 +21,4 @@ tracing.workspace = true | |
tracing-futures.workspace = true | ||
tracing-subscriber.workspace = true | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-drv-sump" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/DrMemCS/drmem" | ||
|
@@ -23,4 +23,4 @@ tracing.workspace = true | |
tracing-futures.workspace = true | ||
tracing-subscriber.workspace = true | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-drv-tplink" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/DrMemCS/drmem" | ||
|
@@ -25,4 +25,4 @@ serde = { workspace = true, features = ["derive"] } | |
serde_derive.workspace = true | ||
serde_json = { workspace = true, features = ["std"] } | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3.1" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-drv-weather-wu" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
homepage = "https://github.com/DrMemCS/drmem" | ||
|
@@ -24,4 +24,4 @@ tracing-subscriber.workspace = true | |
reqwest = { default-features = false, version = "0.11" } | ||
weather-underground = "0.1" | ||
|
||
drmem-api = { path = "../../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../../drmem-api", version = "0.4" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmem-api" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
description = "Traits and types used internally by the DrMem control system" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "drmemd" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = ["Rich Neswold <[email protected]>"] | ||
edition = "2021" | ||
description = "Main process of the DrMem control system" | ||
|
@@ -33,15 +33,15 @@ tracing-subscriber = { workspace = true, features = ["ansi"] } | |
serde.workspace = true | ||
serde_derive.workspace = true | ||
|
||
clap = { version = "~4.4", features = ["cargo"] } | ||
clap = { version = "4", features = ["cargo"] } | ||
|
||
chrono = { workspace = true, features = ["clock"] } | ||
|
||
palette.workspace = true | ||
|
||
lazy_static = "1" | ||
|
||
drmem-api = { path = "../drmem-api", version = "0.3" } | ||
drmem-api = { path = "../drmem-api", version = "0.4" } | ||
|
||
cfgrammar = "0.13" | ||
lrlex = "0.13" | ||
|
@@ -53,58 +53,59 @@ lrpar = "0.13" | |
|
||
[dependencies.drmem-drv-ntp] | ||
path = "../drivers/drmem-drv-ntp" | ||
version = "0.3" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.drmem-drv-sump] | ||
path = "../drivers/drmem-drv-sump" | ||
version = "0.3" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.drmem-drv-tplink] | ||
path = "../drivers/drmem-drv-tplink" | ||
version = "0.1" | ||
version = "0.2" | ||
optional = true | ||
|
||
[dependencies.drmem-drv-weather-wu] | ||
path = "../drivers/drmem-drv-weather-wu" | ||
version = "0.3" | ||
version = "0.4" | ||
optional = true | ||
|
||
# This section defines the optional dependencies for backend storage. | ||
|
||
[dependencies.drmem-db-redis] | ||
path = "../backends/drmem-db-redis" | ||
version = "0.3" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.drmem-db-simple] | ||
path = "../backends/drmem-db-simple" | ||
version = "0.3.1" | ||
version = "0.4" | ||
optional = true | ||
|
||
# This section defines the optional dependencies for the 'graphql' | ||
# feature. | ||
|
||
[dependencies.juniper] | ||
version = "0.15" | ||
version = "0.16" | ||
features = ["chrono"] | ||
optional = true | ||
|
||
[dependencies.juniper_warp] | ||
version = "0.7" | ||
version = "0.8" | ||
features = ["subscriptions"] | ||
optional = true | ||
|
||
[dependencies.juniper_graphql_ws] | ||
version = "0.3" | ||
version = "0.4" | ||
optional = true | ||
|
||
[dependencies.warp] | ||
version = "0.3" | ||
optional = true | ||
|
||
[dependencies.libmdns] | ||
version = "0.7" | ||
version = "0.8" | ||
optional = true | ||
|
||
# These are features that can be enabled for drmem. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.