From fefee209f1a1d5e56ce1ae2f3f1c12ce64d612de Mon Sep 17 00:00:00 2001 From: Emre Sahin Date: Fri, 29 Dec 2023 17:41:23 +0300 Subject: [PATCH] bumb dependencies and version to alpha.1 --- config/Cargo.toml | 6 +++--- core/Cargo.toml | 18 +++++++++--------- ecs/Cargo.toml | 4 ++-- file/Cargo.toml | 20 ++++++++++---------- lib/Cargo.toml | 30 +++++++++++++++--------------- logging/Cargo.toml | 2 +- pipeline/Cargo.toml | 22 +++++++++++----------- storage/Cargo.toml | 22 +++++++++++----------- test_helper/Cargo.toml | 4 ++-- walker/Cargo.toml | 8 ++++---- workflow_tests/Cargo.toml | 28 ++++++++++++++-------------- 11 files changed, 82 insertions(+), 82 deletions(-) diff --git a/config/Cargo.toml b/config/Cargo.toml index 5859d14eb..5ff3d4a69 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -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 "] @@ -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 diff --git a/core/Cargo.toml b/core/Cargo.toml index 28bd1f368..12d3262a8 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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 "] @@ -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"] } @@ -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" diff --git a/ecs/Cargo.toml b/ecs/Cargo.toml index ccd0cfb5d..9e98f09f0 100644 --- a/ecs/Cargo.toml +++ b/ecs/Cargo.toml @@ -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 "] @@ -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"] } diff --git a/file/Cargo.toml b/file/Cargo.toml index 9fcca42c7..f4a458a8d 100644 --- a/file/Cargo.toml +++ b/file/Cargo.toml @@ -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 "] @@ -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 @@ -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" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 7833b60c5..53816f36e 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -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 "] @@ -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 @@ -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" @@ -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/" } diff --git a/logging/Cargo.toml b/logging/Cargo.toml index 6877e22d6..0350cdeb2 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -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 "] diff --git a/pipeline/Cargo.toml b/pipeline/Cargo.toml index 0eccf6f51..89c0aaeca 100644 --- a/pipeline/Cargo.toml +++ b/pipeline/Cargo.toml @@ -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 "] @@ -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"] } @@ -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" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 439c3e3f6..76438b033 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -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 "] @@ -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"] } @@ -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 } @@ -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] diff --git a/test_helper/Cargo.toml b/test_helper/Cargo.toml index c7a8de2c2..fe7e4ed1a 100644 --- a/test_helper/Cargo.toml +++ b/test_helper/Cargo.toml @@ -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 "] @@ -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" diff --git a/walker/Cargo.toml b/walker/Cargo.toml index 08301ee74..6505022b8 100644 --- a/walker/Cargo.toml +++ b/walker/Cargo.toml @@ -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 "] @@ -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 @@ -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"] diff --git a/workflow_tests/Cargo.toml b/workflow_tests/Cargo.toml index ab77c818c..6d1964d13 100644 --- a/workflow_tests/Cargo.toml +++ b/workflow_tests/Cargo.toml @@ -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 "] @@ -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"] } @@ -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"