From 39702c6510089683fc6a7c8a81b3bd3ec2be1e08 Mon Sep 17 00:00:00 2001 From: Marko Date: Mon, 28 Nov 2022 16:49:05 +0000 Subject: [PATCH] rename confio to cosmos (#117) Co-authored-by: Marko Baricevic --- go/go.mod | 2 +- rust/Cargo.toml | 50 ++++++++++++++++++++++++------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/go/go.mod b/go/go.mod index 33db24b88..eb595d1bd 100644 --- a/go/go.mod +++ b/go/go.mod @@ -1,4 +1,4 @@ -module github.com/confio/ics23/go +module github.com/cosmos/ics23/go go 1.19 diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 729e7bfd3..64eddcb2d 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,44 +1,44 @@ [package] -name = "ics23" -version = "0.8.1" authors = ["Ethan Frey "] +description = "Merkle proof verification library - implements Cosmos ICS23 Spec" edition = "2021" exclude = ["codegen", "no-std-check"] -description = "Merkle proof verification library - implements Cosmos ICS23 Spec" -repository = "https://github.com/confio/ics23/tree/master/rust" license = "Apache-2.0" +name = "ics23" +repository = "https://github.com/cosmos/ics23/tree/master/rust" rust-version = "1.56.1" +version = "0.8.1" [workspace] members = ["codegen", "no-std-check"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -prost = { version = "0.11", default-features = false, features = ["prost-derive"] } -bytes = { version = "1.0.1", default-features = false } -hex = { version = "0.4.3", default-features = false, features = [ "alloc" ] } -anyhow = { version = "1.0.40", default-features = false } -sha2 = { version = "0.10.2", optional = true, default-features = false } -sha3 = { version = "0.10.2", optional = true, default-features = false } -ripemd = { version = "0.1.1", optional = true, default-features = false } +anyhow = {version = "1.0.40", default-features = false} +bytes = {version = "1.0.1", default-features = false} +hex = {version = "0.4.3", default-features = false, features = ["alloc"]} +prost = {version = "0.11", default-features = false, features = ["prost-derive"]} +ripemd = {version = "0.1.1", optional = true, default-features = false} +sha2 = {version = "0.10.2", optional = true, default-features = false} +sha3 = {version = "0.10.2", optional = true, default-features = false} [dev-dependencies] -sha2 = { version = "0.10.2" } -sha3 = { version = "0.10.2" } -ripemd = { version = "0.1.1" } -serde = { version = "1.0.125", features = ["derive"] } -serde_json = { version = "1.0.64" } +ripemd = {version = "0.1.1"} +serde = {version = "1.0.125", features = ["derive"]} +serde_json = {version = "1.0.64"} +sha2 = {version = "0.10.2"} +sha3 = {version = "0.10.2"} [features] default = ["std", "host-functions"] -std = [ - "prost/std", - "bytes/std", - "hex/std", - "anyhow/std", -] host-functions = [ - "sha2", - "sha3", - "ripemd", + "sha2", + "sha3", + "ripemd", +] +std = [ + "prost/std", + "bytes/std", + "hex/std", + "anyhow/std", ]