Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cargo publish #1

Merged
merged 7 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace]
resolver = "2"
members = ["secret-sdk-proto", "secret-grpc", "secretrs", "secret-utils"]
exclude = ["proto-build"]
members = ["secret-sdk-proto", "secret-grpc", "secretrs"]
exclude = ["proto-build", "secret-utils"]

# This patch adds target_arch = "wasm32" configurations to the rpc clients
[patch.crates-io]
Expand Down
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<div align="center">
<img src="banner.webp" />
</div>

# Secret Rust

_Insert cool description here._
An extension of [Cosmos Rust](https://github.com/cosmos/cosmos-rust) for [Secret](https://github.com/scrtlabs/SecretNetwork).

## Crates

Expand All @@ -20,8 +24,7 @@ _Insert cool description here._

- [x] `proto-build` crate like cosmos-rust and tendermint-rs each have
- [x] `secret-sdk-proto` crate that re-exports `cosmos-sdk-proto` and adds secret protobuf structs
- [x] `secretrs` crate that re-exports `cosmrs` and adds secret type conversions
- [x] `secret-utils` provide encryption and decryption tools for use with any client
- [x] `secretrs` crate that re-exports `cosmrs` and adds secret types, encryption tools
- [ ] `secret-grpc` crate with full gRPC client implementation
- [ ] `secret-grpc-gateway` crate with full gRPC-gateway (REST) client implementation

Expand Down
22 changes: 22 additions & 0 deletions UNLICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Binary file added banner.webp
Binary file not shown.
1 change: 1 addition & 0 deletions secret-grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "secret-grpc"
version = "0.1.0"
authors = ["Kent"]
license = "Unlicense"
edition = "2021"
publish = false

Expand Down
Loading
Loading