Skip to content

Commit 04984cd

Browse files
committed
[update] lambda logo for readmes.
1 parent 44fd2bd commit 04984cd

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center" style="text-align:center;">
2-
<img src="https://media.githubusercontent.com/media/lambda-sh/lambda/main/lambda/assets/logos/lambda_header.png" />
2+
<img src="https://media.githubusercontent.com/media/lambda-sh/lambda/main/crates/lambda-rs/assets/logos/lambda_header.png" />
33
</p>
44

55
[![Cross Platform builds & tests](https://github.com/lambda-sh/lambda/actions/workflows/compile_lambda_rs.yml/badge.svg)](https://github.com/lambda-sh/lambda/actions/workflows/compile_lambda_rs.yml)
@@ -10,6 +10,7 @@
1010
1. [Description](#description)
1111
2. [API Documentation](#documentation)
1212
3. [Building](#building)
13+
1. [From crates.io](#crates)
1314
1. [From source](#source)
1415
1. [External dependencies](#ext_deps)
1516
2. [Optional dependencies](#opt_deps)
@@ -49,14 +50,14 @@ Documentation to be added soon.
4950

5051
## Installation <a name="building"></a>
5152

52-
### From crates.io
53+
### From crates.io <a name="crates"></a>
5354
lambda is now available on [crates.io](https://crates.io/crates/lambda-rs)
5455
and can be added to your project by adding the following to your
5556
`Cargo.toml` file:
5657

5758
```toml
5859
[dependencies]
59-
lambda-rs = "2023.1.28"
60+
lambda-rs = "2023.1.29"
6061
```
6162

6263
or from the CLI:

crates/lambda-rs/README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
# lambda-rs
1+
<p align="center" style="text-align:center;">
2+
<img src="https://media.githubusercontent.com/media/lambda-sh/lambda/main/crates/lambda-rs/assets/logos/lambda_header.png" />
3+
</p>
4+
25
![lambda-rs](https://img.shields.io/crates/d/lambda-rs)
36
![lambda-rs](https://img.shields.io/crates/v/lambda-rs)
47

58
The lambda-rs crate provides a safe, cross-platform API for building applications on the Lambda platform.
69

7-
## Getting started
8-
### First window
10+
# Installation
11+
```bash
12+
cargo add lambda-rs
13+
```
14+
15+
# Getting started
16+
## First window
917
Getting started with lambda is easy. The following example will create a window with the title "Hello lambda!" and a size of 800x600.
1018
```rust
1119
#[macro_use]

0 commit comments

Comments
 (0)