Skip to content

Commit

Permalink
Lending/credit agency: Initialize the directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ueco-jb committed Dec 13, 2023
1 parent 2ea72e3 commit 908983d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions contracts/lending/credit-agency/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "credit-agency"
version = "0.1.0"
edition = "2021"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
cosmwasm-schema = "1.4.0"
lending-utils = { version = "0.1.0", path = "../../../packages/lending_utils" }
lend-token = { version = "0.1.0", path = "../token" }
shade-protocol = { version = "0.1.0", path = "../../../packages/shade_protocol", features = [
"snip20",
"storage_plus",
] }
schemars = "0.8"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1"
query_auth = { path = "../../query_auth" }

[dev-dependencies]
anyhow = "1"
shade-protocol = { version = "0.1.0", path = "../../../packages/shade_protocol", features = ["multi-test"] }
shade-multi-test = { version = "0.1.0", path = "../../../packages/multi_test", features = [ "snip20"] }
1 change: 1 addition & 0 deletions contracts/lending/credit-agency/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod msg;
Empty file.

0 comments on commit 908983d

Please sign in to comment.