From 8532264c6ddc58060a7f95fc281108edf098ef97 Mon Sep 17 00:00:00 2001 From: STEVAN Antoine <antoine.stevan@isae-supaero.fr> Date: Tue, 5 Nov 2024 15:23:36 +0000 Subject: [PATCH] bump to 1.0.0 (dragoon/komodo!170) --- Cargo.toml | 5 ++++- benchmarks/Cargo.toml | 4 ++-- bins/rank/Cargo.toml | 4 ++-- bins/saclin/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e369333b..f7d1218f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "komodo" -version = "0.3.0" +version = "1.0.0" edition = "2021" +description = "Komodo: cryptographically-proven erasure coding for distributed systems" +repository = "https://gitlab.isae-supaero.fr/dragoon/komodo" +readme = "README.md" license = "MIT" authors = [ "Antoine Stevan <antoine.stevan@isae-supaero.fr>", diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index c5308a8e..6fe5e954 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "benchmarks" -version = "0.1.0" +version = "1.0.0" edition = "2021" [dependencies] @@ -20,6 +20,6 @@ ark-secp256r1 = "0.4.0" ark-std = "0.4.0" ark-vesta = "0.4.0" clap = { version = "4.5.4", features = ["derive"] } -komodo = { version = "0.3.0", path = ".." } +komodo = { path = ".." } plnk = { git = "https://gitlab.isae-supaero.fr/a.stevan/plnk", tag = "0.7.0", version = "0.7.0" } rand = "0.8.5" diff --git a/bins/rank/Cargo.toml b/bins/rank/Cargo.toml index 0a1b136d..83628076 100644 --- a/bins/rank/Cargo.toml +++ b/bins/rank/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rank" -version = "0.1.0" +version = "1.0.0" edition = "2021" description = "Compute the rank of a matrix." @@ -10,5 +10,5 @@ description = "Compute the rank of a matrix." ark-bls12-381 = "0.4.0" ark-ff = "0.4.2" ark-std = "0.4.0" -komodo = { version = "0.3.0", path = "../.." } +komodo = { path = "../.." } rand = "0.8.5" diff --git a/bins/saclin/Cargo.toml b/bins/saclin/Cargo.toml index d47c13a2..c3ee675f 100644 --- a/bins/saclin/Cargo.toml +++ b/bins/saclin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "saclin" -version = "0.3.0" +version = "1.0.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -- GitLab