Crates.io | deno_plugin_starter |
lib.rs | deno_plugin_starter |
version | 0.1.4 |
source | src |
created_at | 2021-03-19 12:38:26.704694 |
updated_at | 2021-03-19 12:38:26.704694 |
description | Quickly start a Deno plugin. |
homepage | |
repository | https://github.com/justjavac/deno_plugin_starter |
max_upload_size | |
id | 370961 |
size | 14,129 |
Quickly start a Deno plugin.
A quick look at the files and directories you'll see in a Deno project.
.
ββ .cargo
β ββ config
ββ .github
β ββ workflows
β ββ ci.yml
ββ src
β ββ lib.rs
ββ .gitattributes
ββ .gitignore
ββ Cargo.lock
ββ Cargo.toml
ββ CHANGELOG.md
ββ LICENSE
ββ README.md
ββ rustfmt.toml
.cargo/config
: Cargo allows local configuration for a particular package as well as global configuration.
.github/workflows/ci.yml
: GitHub Actions.
src/lib.rs
: Rust lib crate.
.gitattributes
: This file is a simple text file that gives attributes
to pathnames.
.gitignore
: This file tells git which files it should not track / not maintain a version history for.
Cargo.lock
: This file contains exact information about your dependencies. It is maintained by Cargo and should not be manually edited.
Cargo.toml
: This file describing your dependencies in a broad sense, and is written by you.
CHANGELOG.md
: This file contains a curated, chronologically ordered list of notable changes for each version of a project. The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.
LICENSE
: Deno is licensed under the MIT license.
README.md
: A text file containing useful reference information about your project.
rustfmt.toml
: Configuring Rustfmt.
deno_plugin_starter is released under the MIT License. See the bundled LICENSE file for details.