Skip to content

Commit c042d89

Browse files
committed
Fill out the crate manifest and some documentation
1 parent ef6554d commit c042d89

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[package]
22
name = "avr-std-stub"
33
version = "0.1.0"
4-
authors = ["Dylan McKay <[email protected]>"]
4+
authors = ["The AVR-Rust Project Developers", "Dylan McKay <[email protected]>"]
55
edition = "2018"
66

7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
description = "Contains simple implementations of required language items that `libstd` normally defines on other targets"
8+
repository = "https://github.com/avr-rust/avr-std-stub"
9+
documentation = "https://docs.rs/avr-std-stub"
10+
categories = ["embedded", "no-std", "hardware-support"]
11+
license = "MIT"
812

913
[dependencies]

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
//! Defines simple implementations of required language items that `libstd` normally defines.
1+
//! Contains simple implementations of required language items that `libstd` normally defines on
2+
//! other targets.
23
34
#![no_std]
45

0 commit comments

Comments
 (0)