From fc8f8d685488ffecedbad9545951b3e1488f4222 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Wed, 25 Oct 2023 14:40:57 -0300 Subject: [PATCH 1/5] build: include native in package --- mix.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/mix.exs b/mix.exs index d390be4..3ad97f0 100644 --- a/mix.exs +++ b/mix.exs @@ -50,6 +50,7 @@ defmodule Candlex.MixProject do defp package do [ + files: ["lib", "native", "priv", ".formatter.exs", "mix.exs", "README.md", "LICENSE"], licenses: ["Apache-2.0"], links: %{ "GitHub" => @source_url From 742404908bee8b6db8223eb3905392a810f2b3c0 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Wed, 25 Oct 2023 14:42:42 -0300 Subject: [PATCH 2/5] build: bump version to 0.1.1 --- README.md | 2 +- mix.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4dce34..9242830 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ by adding `candlex` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:candlex, "~> 0.1.0"} + {:candlex, "~> 0.1.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 3ad97f0..53f3b96 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Candlex.MixProject do @description "An Nx backend for candle machine learning minimalist framework" @source_url "https://github.com/mimiquate/candlex" - @version "0.1.0" + @version "0.1.1" def project do [ From 962f6093c754ee378508b84ba1145a641f2ed7ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 14:58:12 -0300 Subject: [PATCH 3/5] build(deps): bump thiserror from 1.0.49 to 1.0.50 in /native/candlex (#1) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.49 to 1.0.50. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.49...1.0.50) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- native/candlex/Cargo.lock | 8 ++++---- native/candlex/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/native/candlex/Cargo.lock b/native/candlex/Cargo.lock index 78a1854..88aea07 100644 --- a/native/candlex/Cargo.lock +++ b/native/candlex/Cargo.lock @@ -787,18 +787,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" dependencies = [ "proc-macro2", "quote", diff --git a/native/candlex/Cargo.toml b/native/candlex/Cargo.toml index 79f7cc2..e27639d 100644 --- a/native/candlex/Cargo.toml +++ b/native/candlex/Cargo.toml @@ -15,7 +15,7 @@ half = "2.3.1" num-traits = "0.2.16" rustler = "0.29.1" statrs = "0.16.0" -thiserror = "1.0.47" +thiserror = "1.0.50" [build-dependencies] anyhow = "1.0.75" From f0b85bc3413a7ce12ccc0b427e0a0a8eab88ed3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 14:58:33 -0300 Subject: [PATCH 4/5] build(deps): bump num-traits from 0.2.16 to 0.2.17 in /native/candlex (#4) Bumps [num-traits](https://github.com/rust-num/num-traits) from 0.2.16 to 0.2.17. - [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-traits/compare/num-traits-0.2.16...num-traits-0.2.17) --- updated-dependencies: - dependency-name: num-traits dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- native/candlex/Cargo.lock | 4 ++-- native/candlex/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/native/candlex/Cargo.lock b/native/candlex/Cargo.lock index 88aea07..9fb8e53 100644 --- a/native/candlex/Cargo.lock +++ b/native/candlex/Cargo.lock @@ -460,9 +460,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", "libm", diff --git a/native/candlex/Cargo.toml b/native/candlex/Cargo.toml index e27639d..0cd647f 100644 --- a/native/candlex/Cargo.toml +++ b/native/candlex/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib"] [dependencies] candle-core = { git = "https://github.com/huggingface/candle" } half = "2.3.1" -num-traits = "0.2.16" +num-traits = "0.2.17" rustler = "0.29.1" statrs = "0.16.0" thiserror = "1.0.50" From 01f19181f348c4917ec1a24a4673bf08f9641cb2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 17:59:10 +0000 Subject: [PATCH 5/5] build(deps): bump rustler from 0.29.1 to 0.30.0 in /native/candlex Bumps [rustler](https://github.com/rusterlium/rustler) from 0.29.1 to 0.30.0. - [Release notes](https://github.com/rusterlium/rustler/releases) - [Changelog](https://github.com/rusterlium/rustler/blob/master/CHANGELOG.md) - [Commits](https://github.com/rusterlium/rustler/compare/rustler-0.29.1...rustler-0.30.0) --- updated-dependencies: - dependency-name: rustler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/candlex/Cargo.lock | 8 ++++---- native/candlex/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/native/candlex/Cargo.lock b/native/candlex/Cargo.lock index 9fb8e53..8de6085 100644 --- a/native/candlex/Cargo.lock +++ b/native/candlex/Cargo.lock @@ -620,9 +620,9 @@ checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "rustler" -version = "0.29.1" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0884cb623b9f43d3e2c51f9071c5e96a5acf3e6e6007866812884ff0cb983f1e" +checksum = "c4b4fea69e23de68c42c06769d6624d2d018da550c17244dd4b691f90ced4a7e" dependencies = [ "lazy_static", "rustler_codegen", @@ -631,9 +631,9 @@ dependencies = [ [[package]] name = "rustler_codegen" -version = "0.29.1" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50e277af754f2560cf4c4ebedb68c1a735292fb354505c6133e47ec406e699cf" +checksum = "406061bd07aaf052c344257afed4988c5ec8efe4d2352b4c2cf27ea7c8575b12" dependencies = [ "heck", "proc-macro2", diff --git a/native/candlex/Cargo.toml b/native/candlex/Cargo.toml index 0cd647f..af9022e 100644 --- a/native/candlex/Cargo.toml +++ b/native/candlex/Cargo.toml @@ -13,7 +13,7 @@ crate-type = ["cdylib"] candle-core = { git = "https://github.com/huggingface/candle" } half = "2.3.1" num-traits = "0.2.17" -rustler = "0.29.1" +rustler = "0.30.0" statrs = "0.16.0" thiserror = "1.0.50"