Skip to content

Commit 11fd3a8

Browse files
committed
Merge branch 'release/0.1.0'
2 parents 5f8907d + 9059c82 commit 11fd3a8

File tree

27 files changed

+2370
-0
lines changed

27 files changed

+2370
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/
4+
5+
# These are backup files generated by rustfmt
6+
**/*.rs.bk

Cargo.lock

Lines changed: 195 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[package]
2+
name = "autojump-rs"
3+
version = "0.1.0"
4+
authors = ["Wang Xuerui <git@xen0n.name>"]
5+
6+
7+
[workspace]
8+
members = ["src/autojump", "src/autojump-data", "src/autojump-match", "src/autojump-utils"]
9+
10+
11+
[dependencies]
12+
autojump = { path = "src/autojump", version = "0.1.0" }
13+
autojump-data = { path = "src/autojump-data", version = "0.1.0" }
14+
autojump-match = { path = "src/autojump-match", version = "0.1.0" }
15+
autojump-utils = { path = "src/autojump-utils", version = "0.1.0" }
16+
17+
rustc-serialize = "0.3"
18+
docopt = "0.6"
19+
docopt_macros = "0.6"
20+
21+
22+
[[bin]]
23+
name = "autojump"
24+
path = "src/autojump-cli/main.rs"

0 commit comments

Comments
 (0)