Skip to content

Commit

Permalink
Merge branch 'grarco/light-sdk-deps' (#2372)
Browse files Browse the repository at this point in the history
* grarco/light-sdk-deps:
  Changelog #2372
  Adds light sdk to Makefile
  Cleans up light sdk dependencies
  • Loading branch information
brentstone committed Jan 10, 2024
2 parents 319d91f + 152789e commit 7e948bd
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 76 deletions.
2 changes: 2 additions & 0 deletions .changelog/unreleased/SDK/2372-light-sdk-deps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Cleaned up the unused ibc dependency of the light sdk crate.
([\#2372](https://github.com/anoma/namada/pull/2372))
89 changes: 16 additions & 73 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ crates += namada_apps
crates += namada_benchmarks
crates += namada_encoding_spec
crates += namada_ethereum_bridge
crates += namada_light_sdk
crates += namada_macros
crates += namada_proof_of_stake
crates += namada_sdk
Expand Down
5 changes: 2 additions & 3 deletions light_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "namada_light_sdk"
description = "A more simple version of the Namada SDK"
description = "A higher level, user friendly version of the Namada SDK"
resolver = "2"
authors.workspace = true
edition.workspace = true
Expand All @@ -17,10 +17,9 @@ version.workspace = true
[dependencies]
borsh.workspace = true
borsh-ext.workspace = true
ibc = "0.47.0"
namada_core = {path = "../core"}
namada_sdk = {path = "../sdk"}
prost.workspace = true
tendermint-config.workspace = true
tendermint-rpc = { worskpace = true, features = ["http-client"] }
tendermint-rpc = {worskpace = true, features = ["http-client"]}
tokio = {workspace = true, features = ["rt"]}

0 comments on commit 7e948bd

Please sign in to comment.