Skip to content

Commit

Permalink
bumb dependencies and version to alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Dec 29, 2023
1 parent a485bd0 commit fefee20
Show file tree
Hide file tree
Showing 11 changed files with 82 additions and 82 deletions.
6 changes: 3 additions & 3 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-config"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Xvc configuration management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -20,8 +20,8 @@ debug = true


[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }


## Cli and config
Expand Down
18 changes: 9 additions & 9 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-core"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Xvc core for common elements for all commands"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,10 +19,10 @@ crate-type = ["rlib"]
debug = true

[dependencies]
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -75,13 +75,13 @@ regex = "^1.10"
strum = "0.25.0"
strum_macros = "0.25.3"
lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
uuid = { version = "^1.6", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
cached = "^0.46"
derive_more = "^0.99"
itertools = "^0.12"

[dev-dependencies]
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper/" }
proptest = "^1.3"
test-case = "^3.2"
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper/" }
proptest = "^1.4"
test-case = "^3.3"
4 changes: 2 additions & 2 deletions ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-ecs"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Entity-Component System for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,7 +19,7 @@ crate-type = ["rlib"]
debug = true

[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }

## Serialization
serde = { version = "^1.0", features = ["derive"] }
Expand Down
20 changes: 10 additions & 10 deletions file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-file"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "File tracking, versioning, upload and download functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -24,12 +24,12 @@ bench = true
debug = true

[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-core = { version = "0.6.5-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.0", path = "../storage" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-core = { version = "0.6.5-alpha.1", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.1", path = "../storage" }


## Cli and config
Expand Down Expand Up @@ -84,14 +84,14 @@ chrono = "^0.4"
strum = "0.25.0"
strum_macros = "0.25.3"
lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
uuid = { version = "^1.6", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
url = { version = "^2.4", features = ["serde"] }
url = { version = "^2.5", features = ["serde"] }
itertools = "^0.11"
derive_more = "^0.99"
parse-size = "^1.0"


[dev-dependencies]
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper/" }
shellfn = "^0.1"
30 changes: 15 additions & 15 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "An MLOps tool to manage data files and pipelines on top of Git"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -23,14 +23,14 @@ path = "src/main.rs"
debug = true

[dependencies]
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-core = { version = "0.6.5-alpha.0", path = "../core" }
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-file = { version = "0.6.5-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.5-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.0", path = "../storage" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-core = { version = "0.6.5-alpha.1", path = "../core" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-file = { version = "0.6.5-alpha.1", path = "../file" }
xvc-pipeline = { version = "0.6.5-alpha.1", path = "../pipeline" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.1", path = "../storage" }


## Cli and config
Expand Down Expand Up @@ -85,14 +85,14 @@ chrono = "^0.4"
strum = "0.25.0"
strum_macros = "0.25.3"
lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
uuid = { version = "^1.6", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
url = { version = "^2.4", features = ["serde"] }
url = { version = "^2.5", features = ["serde"] }
git-version = "^0.3"

## Mostly for testing
assert_cmd = "^2.0"
assert_fs = "^1.0"
assert_fs = "^1.1"
predicates = "^3.0"


Expand All @@ -110,7 +110,7 @@ digital-ocean = ["xvc-storage/digital-ocean"]
fs_extra = "^1.3"
globset = "^0.4"
jwalk = "^0.8"
proptest = "^1.3"
proptest = "^1.4"
shellfn = "^0.1"
test-case = "^3.2"
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper/" }
test-case = "^3.3"
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper/" }
2 changes: 1 addition & 1 deletion logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-logging"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Logging crate for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand Down
22 changes: 11 additions & 11 deletions pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-pipeline"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Xvc data pipeline management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,12 +19,12 @@ debug = true


[dependencies]
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-core = { version = "0.6.5-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-file = { version = "0.6.5-alpha.0", path = "../file" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-core = { version = "0.6.5-alpha.1", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }
xvc-file = { version = "0.6.5-alpha.1", path = "../file" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -85,12 +85,12 @@ chrono = "^0.4"
strum = "0.25.0"
strum_macros = "0.25.3"
lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
uuid = { version = "^1.6", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
url = { version = "^2.4", features = ["serde"] }
url = { version = "^2.5", features = ["serde"] }
itertools = "^0.12"
derive_more = "^0.99"

[dev-dependencies]
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper/" }
test-case = "^3.2"
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper/" }
test-case = "^3.3"
22 changes: 11 additions & 11 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-storage"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Xvc remote (and local) storage management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -20,11 +20,11 @@ debug = true


[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-core = { version = "0.6.5-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-core = { version = "0.6.5-alpha.1", path = "../core" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -76,17 +76,17 @@ regex = "^1.10"
strum = "0.25.0"
strum_macros = "0.25.3"
lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
uuid = { version = "^1.6", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
url = { version = "^2.4", features = ["serde"] }
url = { version = "^2.5", features = ["serde"] }
itertools = "^0.12"
derive_more = "^0.99"
tempfile = "^3.8"
tempfile = "^3.9"

## Networking & Async


tokio = { version = "^1.32", optional = true, features = ["rt-multi-thread"] }
tokio = { version = "^1.35", optional = true, features = ["rt-multi-thread"] }
rust-s3 = { version = "^0.33", optional = true }
futures = { version = "^0.3", optional = true }

Expand All @@ -107,7 +107,7 @@ digital-ocean = ["dep:rust-s3", "dep:futures", "dep:tokio"]


[dev-dependencies]
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper/" }
shellfn = "^0.1"

[package.metadata.cargo-udeps.ignore]
Expand Down
4 changes: 2 additions & 2 deletions test_helper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-test-helper"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Unit test helper functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -23,7 +23,7 @@ debug = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging/" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging/" }

rand = "^0.8"
log = "^0.4"
Expand Down
8 changes: 4 additions & 4 deletions walker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-walker"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Xvc parallel file system walker with ignore features"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,7 +19,7 @@ crate-type = ["rlib"]
debug = true

[dependencies]
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
globset = "^0.4"

## Parallelization
Expand All @@ -41,8 +41,8 @@ itertools = "^0.12"
regex = "^1.10"

[dev-dependencies]
xvc-test-helper = { path = "../test_helper/", version = "0.6.5-alpha.0" }
test-case = "^3.2"
xvc-test-helper = { path = "../test_helper/", version = "0.6.5-alpha.1" }
test-case = "^3.3"

[package.metadata.cargo-udeps.ignore]
normal = ["xvc-logging", "test-case"]
28 changes: 14 additions & 14 deletions workflow_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-workflow-tests"
version = "0.6.5-alpha.0"
version = "0.6.5-alpha.1"
edition = "2021"
description = "Integration test suite for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -23,15 +23,15 @@ debug = true


[dependencies]
xvc = { version = "0.6.5-alpha.0", path = "../lib" }
xvc-config = { version = "0.6.5-alpha.0", path = "../config" }
xvc-core = { version = "0.6.5-alpha.0", path = "../core" }
xvc-logging = { version = "0.6.5-alpha.0", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.0", path = "../ecs" }
xvc-file = { version = "0.6.5-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.5-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.5-alpha.0", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.0", path = "../storage" }
xvc = { version = "0.6.5-alpha.1", path = "../lib" }
xvc-config = { version = "0.6.5-alpha.1", path = "../config" }
xvc-core = { version = "0.6.5-alpha.1", path = "../core" }
xvc-logging = { version = "0.6.5-alpha.1", path = "../logging" }
xvc-ecs = { version = "0.6.5-alpha.1", path = "../ecs" }
xvc-file = { version = "0.6.5-alpha.1", path = "../file" }
xvc-pipeline = { version = "0.6.5-alpha.1", path = "../pipeline" }
xvc-walker = { version = "0.6.5-alpha.1", path = "../walker" }
xvc-storage = { version = "0.6.5-alpha.1", path = "../storage" }

## packages for testing
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -66,16 +66,16 @@ test-generic-rsync = []


[dev-dependencies]
proptest = "^1.3"
test-case = "^3.2"
proptest = "^1.4"
test-case = "^3.3"
globset = "^0.4"
escargot = "^0.5"
xvc-test-helper = { version = "0.6.5-alpha.0", path = "../test_helper" }
xvc-test-helper = { version = "0.6.5-alpha.1", path = "../test_helper" }
shellfn = "^0.1"
jwalk = "^0.8"
anyhow = "^1.0"
assert_cmd = "^2.0"
assert_fs = "^1.0"
assert_fs = "^1.1"
predicates = "^3.0"
trycmd = "^0.14"
which = "^5.0"
Expand Down

0 comments on commit fefee20

Please sign in to comment.