Skip to content

Commit

Permalink
fix: update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
wiseaidev committed Jun 17, 2024
1 parent 87352bd commit af0242c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
24 changes: 24 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
name = "wasi-sol"
version = "0.0.1"
edition = "2021"
description = "🔒 A Solana Wallet adapter for WASM frameworks."
license = "MIT"
keywords = ["blockchain", "solana", "wallet", "wasm", "yew"]
categories = ["web-programming", "cryptography", "wasm"]
repository = "https://github.com/gigadao/wasi-sol"
documentation = "https://docs.rs/wasi-sol"
authors = [
"GigaDAO Core Maintainers",
"Mahmoud Harmouch [email protected]",
]
exclude = ["examples"]

[dependencies]
anyhow = "1.0.86"
Expand All @@ -18,3 +29,16 @@ wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
solana-client-wasm = "1.18.0"
emitter-rs = "0.0.5"
yew = "0.21.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.release]
codegen-units = 1
opt-level = "z"
lto = "thin"
strip = "symbols"

[badges]
maintenance = { status = "actively-developed" }
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Mahmoud Harmouch <[email protected]>
Copyright (c) 2024 GigaDAO Core Maintainers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">

# 🦀 wasi-sol
# 🦀 Wasi Sol

[![made-with-rust](https://img.shields.io/badge/Made%20with-Rust-1f425f.svg?logo=rust&logoColor=white)](https://www.rust-lang.org/)
[![Netlify Status](https://api.netlify.com/api/v1/badges/d7858d73-f54a-4d4f-878f-466168d8ea07/deploy-status)](https://app.netlify.com/sites/wasi-sol/deploys)
Expand Down Expand Up @@ -54,7 +54,7 @@ A Solana Wallet adapter for WASM frameworks.

In addition to the [`examples`](examples) directory, you can use the following snippet of code to add `wasi-sol` wallet adapter using its built-in providers and hooks:

```rust
```rust , ignore
use yew::prelude::*;

use wasi_sol::{
Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]

pub mod core;
pub mod provider;
pub mod solana;
Expand Down

0 comments on commit af0242c

Please sign in to comment.