Skip to content

Commit 8730a2a

Browse files
authored
Merge pull request #5 from holaplex/ryans/upload-drop
Implement upload drop subcommand.
2 parents 8ff6e88 + 8540ac1 commit 8730a2a

21 files changed

+4183
-147
lines changed

.gitignore

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33
debug/
44
target/
55

6-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8-
Cargo.lock
9-
106
# These are backup files generated by rustfmt
117
**/*.rs.bk
128

139
# MSVC Windows builds of rustc generate these, which store debugging information
1410
*.pdb
1511

16-
1712
# Added by cargo
18-
1913
/target

.rustfmt.toml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
max_width = 100
2+
hard_tabs = false
3+
tab_spaces = 4
4+
newline_style = "Unix"
5+
indent_style = "Block"
6+
use_small_heuristics = "Default"
7+
fn_call_width = 60
8+
attr_fn_like_width = 70
9+
struct_lit_width = 18
10+
struct_variant_width = 35
11+
array_width = 60
12+
chain_width = 60
13+
single_line_if_else_max_width = 50
14+
single_line_let_else_max_width = 50
15+
wrap_comments = false
16+
format_code_in_doc_comments = false
17+
doc_comment_code_block_width = 100
18+
comment_width = 80
19+
normalize_comments = false
20+
normalize_doc_attributes = true
21+
format_strings = true
22+
format_macro_matchers = true
23+
format_macro_bodies = true
24+
skip_macro_invocations = []
25+
hex_literal_case = "Lower"
26+
empty_item_single_line = true
27+
struct_lit_single_line = true
28+
fn_single_line = true
29+
where_single_line = true
30+
imports_indent = "Block"
31+
imports_layout = "Mixed"
32+
imports_granularity = "Crate"
33+
group_imports = "StdExternalCrate"
34+
reorder_imports = true
35+
reorder_modules = true
36+
reorder_impl_items = true
37+
type_punctuation_density = "Wide"
38+
space_before_colon = false
39+
space_after_colon = true
40+
spaces_around_ranges = false
41+
binop_separator = "Front"
42+
remove_nested_parens = true
43+
combine_control_expr = true
44+
short_array_element_width_threshold = 10
45+
overflow_delimited_expr = true
46+
struct_field_align_threshold = 0
47+
enum_discrim_align_threshold = 0
48+
match_arm_blocks = true
49+
match_arm_leading_pipes = "Never"
50+
force_multiline_blocks = false
51+
fn_params_layout = "Tall"
52+
brace_style = "SameLineWhere"
53+
control_brace_style = "AlwaysSameLine"
54+
trailing_semicolon = true
55+
trailing_comma = "Vertical"
56+
match_block_trailing_comma = true
57+
blank_lines_upper_bound = 1
58+
blank_lines_lower_bound = 0
59+
edition = "2021"
60+
version = "Two"
61+
inline_attribute_width = 0
62+
format_generated_files = false
63+
merge_derives = true
64+
use_try_shorthand = true
65+
use_field_init_shorthand = true
66+
force_explicit_abi = true
67+
condense_wildcard_suffixes = true
68+
color = "Auto"
69+
required_version = "1.6.0"
70+
unstable_features = false
71+
disable_all_formatting = false
72+
skip_children = false
73+
hide_parse_errors = false
74+
error_on_line_overflow = false
75+
error_on_unformatted = false
76+
ignore = []
77+
emit_mode = "Files"
78+
make_backup = false

0 commit comments

Comments
 (0)