Skip to content

Commit feb9017

Browse files
committed
push to crates.io
1 parent 575a4c5 commit feb9017

File tree

5 files changed

+19
-69
lines changed

5 files changed

+19
-69
lines changed

Diff for: Cargo.lock

+1-61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
[[bin]]
2-
name = "lc"
3-
path = "src/bin/lc.rs"
2+
name = "leetcode"
3+
path = "src/bin/leetcode.rs"
44

55
[package]
6-
name = "lc"
6+
name = "leetcode-cli"
77
version = "0.1.0"
8-
authors = ["clearloop <udtrokia@gmail.com>"]
8+
authors = ["clearloop <udtrokia@163.com>"]
99
edition = "2018"
10+
description = "Leet your code in command-line."
11+
repository = "https://github.com/clearloop/leetcode-cli"
12+
license = "MIT"
13+
documentation = "https://docs.rs/leetcode_cli"
14+
homepage = "https://github.com/clearloop/leetcode-cli"
15+
keywords = ["games"]
16+
readme = './README.md'
1017

1118
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1219

@@ -19,7 +26,6 @@ keyring = "0.7.1"
1926
log = "0.4"
2027
openssl = "0.10.26"
2128
reqwest = "0.9.24"
22-
sled = "0.30.3"
2329
toml = "0.5.5"
2430
serde = "1.0.104"
2531
serde_derive = "1.0.104"

Diff for: LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Leetcode-cli
3+
Copyright (c) 2019 clearloop
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

Diff for: README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# leetcode-cli
2+
[![doc](https://img.shields.io/badge/0.1.0-docs-green.svg)](https://docs.rs/leetcode-cli/)
3+
[![Crates.io](https://img.shields.io/crates/v/leetcode-cli.svg)](https://crates.io/crates/leetcode-cli)
4+
[![Crates.io](https://img.shields.io/crates/d/leetcode-cli.svg)](https://crates.io/crates/leetcode-cli)
5+
[![LICENSE](https://img.shields.io/crates/l/leetcode-cli.svg)](https://choosealicense.com/licenses/mit/)
26

37
ref to [leetcode-cli](https://github.com/skygragon/leetcode-cli), rust version, [spec](/spec.md)
48

Diff for: src/bin/lc.rs renamed to src/bin/leetcode.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use lc::plugins::leetcode;
1+
use leetcode_cli::plugins::leetcode;
22

33
fn main() {
44
env_logger::init();

0 commit comments

Comments
 (0)