Skip to content

Commit

Permalink
CCCP-159, feature: release v0.1.0 (#64)
Browse files Browse the repository at this point in the history
* CCCP-159, chore: print sys info

* CCCP-159, chore: cleanup comments and simple fixes

* CCCP-159, chore: remove btc impls

* CCCP-159, docs: update readme

* CCCP-159, chore: apply cargo-clippy

* [CCCP-123-deploy/dockerfile] (#65)

* CCCP-123: deploy: Create Dockerfile, .dockerignore

* CCCP-123, chore: Bump sentry to 0.31.5

* CCCP-123, chore: Remove openssl dependency

* CCCP-123, chore: Rollback rust-toolchain

* CCCP-159, docs: update readme

---------

Co-authored-by: Min-seong Kwon <[email protected]>
  • Loading branch information
dnjscksdn98 and alstjd0921 authored Jul 3, 2023
1 parent 7404eeb commit 01c3acf
Show file tree
Hide file tree
Showing 35 changed files with 223 additions and 10,471 deletions.
50 changes: 25 additions & 25 deletions .cargo/cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,29 @@ git-fetch-with-cli = true
# RUSTFLAGS= cargo clippy
[target.'cfg(feature = "cargo-clippy")']
rustflags = [
"-Aclippy::all",
"-Dclippy::correctness",
"-Dclippy::complexity",
"-Dclippy::unwrap_used",
"-Aclippy::if-same-then-else",
"-Aclippy::clone-double-ref",
"-Aclippy::clone_on_copy", # Too common
"-Aclippy::needless_lifetimes", # Backward compat?
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
"-Aclippy::nonminimal-bool", # maybe
"-Aclippy::borrowed-box", # Reasonable to fix this one
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
"-Aclippy::unnecessary_cast", # Types may change
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::useless_conversion", # Types may change
"-Aclippy::unit_arg", # styalistic.
"-Aclippy::option-map-unit-fn", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
"-Aclippy::eq_op", # In tests we test equality.
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop" # irrelevant
"-Aclippy::all",
"-Dclippy::correctness",
"-Dclippy::complexity",
"-Dclippy::unwrap_used",
"-Aclippy::if-same-then-else",
"-Aclippy::clone-double-ref",
"-Aclippy::clone_on_copy", # Too common
"-Aclippy::needless_lifetimes", # Backward compat?
"-Aclippy::zero-prefixed-literal", # 00_1000_000
"-Aclippy::type_complexity", # raison d'etre
"-Aclippy::nonminimal-bool", # maybe
"-Aclippy::borrowed-box", # Reasonable to fix this one
"-Aclippy::too-many-arguments", # (Turning this on would lead to)
"-Aclippy::unnecessary_cast", # Types may change
"-Aclippy::identity-op", # One case where we do 0 +
"-Aclippy::useless_conversion", # Types may change
"-Aclippy::unit_arg", # styalistic.
"-Aclippy::option-map-unit-fn", # styalistic
"-Aclippy::bind_instead_of_map", # styalistic
"-Aclippy::erasing_op", # E.g. 0 * DOLLARS
"-Aclippy::eq_op", # In tests we test equality.
"-Aclippy::while_immutable_condition", # false positives
"-Aclippy::needless_option_as_deref", # false positives
"-Aclippy::derivable_impls", # false positives
"-Aclippy::explicit_counter_loop" # irrelevant
]
8 changes: 8 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Dockerfile
Cargo.lock
.editorconfig
.gitignore
target
media
.idea
.github
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ Temporary Items
# will have compiled files and executables
debug/
target/
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk
Expand Down
Loading

0 comments on commit 01c3acf

Please sign in to comment.