1 unstable release
0.1.4 | Mar 19, 2021 |
---|
#122 in #deno
6KB
50 lines
deno_plugin_starter
Quickly start a Deno plugin.
🧐 What's inside?
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 givesattributes
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.
License
deno_plugin_starter is released under the MIT License. See the bundled LICENSE file for details.
Dependencies
~53MB
~1M SLoC