chore: update gitignore and add Cargo.lock
This commit is contained in:
parent
61f4a36721
commit
1d5ba95962
3 changed files with 3071 additions and 5 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -3,17 +3,12 @@
|
|||
# will have compiled files and executables
|
||||
debug/
|
||||
target/
|
||||
Cargo.lock
|
||||
|
||||
# cargo-bin-run cache
|
||||
.bin
|
||||
|
||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||
Cargo.lock
|
||||
|
||||
# These are backup files generated by rustfmt
|
||||
**/*.rs.bk
|
||||
|
||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||
*.pdb
|
||||
|
|
3067
Cargo.lock
generated
Normal file
3067
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -2,6 +2,10 @@
|
|||
name = "trello-to-deck"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Paul Campbell <pcampbell@kemitix.net>"]
|
||||
description = "Migrate your Trello Board to Nextcloud Deck"
|
||||
license = "MIT"
|
||||
repository = "https://git.kemitix.net/kemitix/trello-to-deck"
|
||||
|
||||
[dependencies]
|
||||
all-colors = "0.0"
|
||||
|
|
Loading…
Reference in a new issue