Skip to content

Commit

Permalink
Stage versions in cargo toml
Browse files Browse the repository at this point in the history
This is more prep for eventual publish
  • Loading branch information
mlieberman85 committed Apr 14, 2024
1 parent afac1f3 commit dcd3065
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions skootrs-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ path = "src/main.rs"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
tracing = "0.1"
skootrs-lib = { path = "../skootrs-lib" }
skootrs-rest = { path = "../skootrs-rest" }
skootrs-statestore = { path = "../skootrs-statestore" }
skootrs-lib = { version = "0.1.0", path = "../skootrs-lib" }
skootrs-rest = { version = "0.1.0", path = "../skootrs-rest" }
skootrs-statestore = { version = "0.1.0", path = "../skootrs-statestore" }
inquire = "0.6.2"
octocrab = "0.32.0"
tokio = { version = "1.34.0", features = ["full", "tracing", "macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] }
serde_json = "1.0.112"
skootrs-model = { path = "../skootrs-model" }
skootrs-model = { version = "0.1.0", path = "../skootrs-model" }
opentelemetry-jaeger = { version = "0.20.0", features = ["rt-tokio-current-thread"] }
tracing-opentelemetry = "0.22.0"
tracing-bunyan-formatter = "0.3.9"
Expand Down
2 changes: 1 addition & 1 deletion skootrs-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ askama = "0.12.1"
schemars = { version = "0.8.16", features = ["chrono", "url"] }
tracing = "0.1"
futures = "0.3.30"
skootrs-model = { path = "../skootrs-model" }
skootrs-model = { version = "0.1.0", path = "../skootrs-model" }
sha2 = "0.10.8"
url = "2.5.0"
base64 = "0.22.0"
Expand Down
6 changes: 3 additions & 3 deletions skootrs-rest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ actix-web = "4.4.1"
serde_json = "1.0.112"
tokio = { version = "1.34.0", features = ["full", "tracing", "macros", "rt-multi-thread"] }
serde = { version = "1.0.193", features = ["derive"] }
skootrs-lib = { path = "../skootrs-lib" }
skootrs-model = { path = "../skootrs-model", features = ["openapi"] }
skootrs-statestore = { path = "../skootrs-statestore" }
skootrs-lib = { version = "0.1.0", path = "../skootrs-lib" }
skootrs-model = { version = "0.1.0", path = "../skootrs-model", features = ["openapi"] }
skootrs-statestore = { version = "0.1.0", path = "../skootrs-statestore" }
4 changes: 2 additions & 2 deletions skootrs-statestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
skootrs-lib = { path = "../skootrs-lib" }
skootrs-model = { path = "../skootrs-model" }
skootrs-lib = { version = "0.1.0", path = "../skootrs-lib" }
skootrs-model = { version = "0.1.0", path = "../skootrs-model" }
serde_json = "1.0.114"

0 comments on commit dcd3065

Please sign in to comment.