Skip to content

Commit b894dfe

Browse files
Merge pull request #5 from coding-kelps/add-cargo-package-metadata
docs: add cargo package metadata
2 parents 72558d1 + 246f877 commit b894dfe

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

Cargo.toml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
[package]
2-
name = "leetcode_cli"
2+
name = "leetcode-cli"
33
version = "0.1.0"
4+
authors = ["Coding Kelps"]
5+
autotests = false
6+
categories = ["command-line-utilities"]
7+
description = "Interact with LeetCode in your development environment."
48
edition = "2021"
9+
exclude = []
10+
homepage = "https://github.com/coding-kelps/leetcode-cli"
11+
keywords = ["leetcode"]
12+
license = "GPL-3.0"
13+
readme = "README.md"
14+
repository = "https://github.com/coding-kelps/leetcode-cli"
15+
rust-version = "1.83"
516

617
[dependencies]
718
leetcoderustapi = "1.0.8"
@@ -16,4 +27,3 @@ warp = "0.3.7"
1627
colored = "3.0.0"
1728
nanohtml2text = "0.2.1"
1829
html2md = "0.2.15"
19-
Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
**1. What is the project’s objective?**
1+
# Embryo
2+
The Embryo manifest outlines the initial vision and objectives of an experimental project by answering a few questions.
3+
4+
## What is the project’s objective?
25

36
_Clearly define the purpose and utility of the project._
47
→ Summarize in one sentence what the project is supposed to do.
58

69
Interact with leetcode in your terminal (get info / code, submit problem for any language) and get info on your profile.
710

8-
**2. What value does it bring?**
11+
## What value does it bring?
912

1013
_Why is this project worth developing or using?_
1114
→ Explain what users (or yourself) will gain or learn from this project.
1215

1316
leetcode code interface doesn't support a fully integrated IDE experience yet, so it's a little painful to write code there. allow to bring a problem down to a local environment.
1417

15-
**3. What are the completion criteria?**
18+
## What are the completion criteria?**
1619
_When is the project considered at a major milestone?_
1720
→ Define milestones or issues that help measure progress.
1821

@@ -22,4 +25,4 @@ get markdown.
2225
run tests cases.
2326
submit problem.
2427
language agnostic.
25-
bonus: automatic tests creation from the examples.
28+
bonus: automatic tests creation from the examples.

0 commit comments

Comments
 (0)