chore: tag 0.3.0-dev
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I46e0922237f99736aec4b11ecb84b12a6a6a6964
This commit is contained in:
parent
adaab9de21
commit
99b3c01d22
2 changed files with 47 additions and 47 deletions
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -5315,7 +5315,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pinakes-core"
|
name = "pinakes-core"
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"argon2",
|
"argon2",
|
||||||
|
|
@ -5360,7 +5360,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pinakes-plugin-api"
|
name = "pinakes-plugin-api"
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
@ -5376,7 +5376,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pinakes-server"
|
name = "pinakes-server"
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"argon2",
|
"argon2",
|
||||||
|
|
@ -5409,7 +5409,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pinakes-tui"
|
name = "pinakes-tui"
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
@ -5428,7 +5428,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pinakes-ui"
|
name = "pinakes-ui"
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
||||||
84
Cargo.toml
84
Cargo.toml
|
|
@ -4,7 +4,7 @@ resolver = "3"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
edition = "2024" # keep in sync with .rustfmt.toml
|
edition = "2024" # keep in sync with .rustfmt.toml
|
||||||
version = "0.2.0-dev"
|
version = "0.3.0-dev"
|
||||||
license = "EUPL-1.2"
|
license = "EUPL-1.2"
|
||||||
readme = true
|
readme = true
|
||||||
rust-version = "1.95.0" # follows nightly Rust
|
rust-version = "1.95.0" # follows nightly Rust
|
||||||
|
|
@ -139,46 +139,46 @@ wit-bindgen = "0.53.1"
|
||||||
# See:
|
# See:
|
||||||
# <https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html>
|
# <https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html>
|
||||||
[workspace.lints.clippy]
|
[workspace.lints.clippy]
|
||||||
cargo = { level = "warn", priority = -1 }
|
cargo = { level = "warn", priority = -1 }
|
||||||
complexity = { level = "warn", priority = -1 }
|
complexity = { level = "warn", priority = -1 }
|
||||||
nursery = { level = "warn", priority = -1 }
|
nursery = { level = "warn", priority = -1 }
|
||||||
pedantic = { level = "warn", priority = -1 }
|
pedantic = { level = "warn", priority = -1 }
|
||||||
perf = { level = "warn", priority = -1 }
|
perf = { level = "warn", priority = -1 }
|
||||||
style = { level = "warn", priority = -1 }
|
style = { level = "warn", priority = -1 }
|
||||||
|
|
||||||
# The lint groups above enable some less-than-desirable rules, we should manually
|
# The lint groups above enable some less-than-desirable rules, we should manually
|
||||||
# enable those to keep our sanity.
|
# enable those to keep our sanity.
|
||||||
absolute_paths = "allow"
|
absolute_paths = "allow"
|
||||||
arbitrary_source_item_ordering = "allow"
|
arbitrary_source_item_ordering = "allow"
|
||||||
clone_on_ref_ptr = "warn"
|
clone_on_ref_ptr = "warn"
|
||||||
dbg_macro = "warn"
|
dbg_macro = "warn"
|
||||||
empty_drop = "warn"
|
empty_drop = "warn"
|
||||||
empty_structs_with_brackets = "warn"
|
empty_structs_with_brackets = "warn"
|
||||||
exit = "warn"
|
exit = "warn"
|
||||||
filetype_is_file = "warn"
|
filetype_is_file = "warn"
|
||||||
get_unwrap = "warn"
|
get_unwrap = "warn"
|
||||||
implicit_return = "allow"
|
implicit_return = "allow"
|
||||||
infinite_loop = "warn"
|
infinite_loop = "warn"
|
||||||
map_with_unused_argument_over_ranges = "warn"
|
map_with_unused_argument_over_ranges = "warn"
|
||||||
missing_docs_in_private_items = "allow"
|
missing_docs_in_private_items = "allow"
|
||||||
multiple_crate_versions = "allow" # :(
|
multiple_crate_versions = "allow" # :(
|
||||||
non_ascii_literal = "allow"
|
non_ascii_literal = "allow"
|
||||||
non_std_lazy_statics = "warn"
|
non_std_lazy_statics = "warn"
|
||||||
pathbuf_init_then_push = "warn"
|
pathbuf_init_then_push = "warn"
|
||||||
pattern_type_mismatch = "allow"
|
pattern_type_mismatch = "allow"
|
||||||
question_mark_used = "allow"
|
question_mark_used = "allow"
|
||||||
rc_buffer = "warn"
|
rc_buffer = "warn"
|
||||||
rc_mutex = "warn"
|
rc_mutex = "warn"
|
||||||
rest_pat_in_fully_bound_structs = "warn"
|
rest_pat_in_fully_bound_structs = "warn"
|
||||||
similar_names = "allow"
|
similar_names = "allow"
|
||||||
single_call_fn = "allow"
|
single_call_fn = "allow"
|
||||||
std_instead_of_core = "allow"
|
std_instead_of_core = "allow"
|
||||||
too_long_first_doc_paragraph = "allow"
|
too_long_first_doc_paragraph = "allow"
|
||||||
too_many_lines = "allow"
|
too_many_lines = "allow"
|
||||||
undocumented_unsafe_blocks = "warn"
|
undocumented_unsafe_blocks = "warn"
|
||||||
unnecessary_safety_comment = "warn"
|
unnecessary_safety_comment = "warn"
|
||||||
unused_result_ok = "warn"
|
unused_result_ok = "warn"
|
||||||
unused_trait_names = "allow"
|
unused_trait_names = "allow"
|
||||||
|
|
||||||
# False positive:
|
# False positive:
|
||||||
# clippy's build script check doesn't recognize workspace-inherited metadata
|
# clippy's build script check doesn't recognize workspace-inherited metadata
|
||||||
|
|
@ -186,17 +186,17 @@ unused_trait_names = "allow"
|
||||||
cargo_common_metadata = "allow"
|
cargo_common_metadata = "allow"
|
||||||
|
|
||||||
# In the honor of a recent Cloudflare regression
|
# In the honor of a recent Cloudflare regression
|
||||||
panic = "deny"
|
panic = "deny"
|
||||||
unwrap_used = "deny"
|
unwrap_used = "deny"
|
||||||
|
|
||||||
# Less dangerous, but we'd like to know
|
# Less dangerous, but we'd like to know
|
||||||
# Those must be opt-in, and are fine ONLY in tests and examples.
|
# Those must be opt-in, and are fine ONLY in tests and examples.
|
||||||
expect_used = "warn"
|
expect_used = "warn"
|
||||||
print_stderr = "warn"
|
print_stderr = "warn"
|
||||||
print_stdout = "warn"
|
print_stdout = "warn"
|
||||||
todo = "warn"
|
todo = "warn"
|
||||||
unimplemented = "warn"
|
unimplemented = "warn"
|
||||||
unreachable = "warn"
|
unreachable = "warn"
|
||||||
|
|
||||||
[profile.dev.package]
|
[profile.dev.package]
|
||||||
blake3 = { opt-level = 3 }
|
blake3 = { opt-level = 3 }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue