Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ resolver = "3"

[workspace.package]
version = "0.2.1"
authors = ["Aaron Bull Schaefer <aaron@elasticdog.com>"]
edition = "2024"
rust-version = "1.91"
description = "Convert characters into spelling alphabet code words"
Expand All @@ -14,6 +13,12 @@ homepage = "https://github.com/EarthmanMuons/spellout/"
repository = "https://github.com/EarthmanMuons/spellout/"
license = "MIT OR Apache-2.0"

# https://github.com/crate-ci/cargo-release/
[workspace.metadata.release]
allow-branch = ["main"]
tag = false
tag-message = "Release {{crate_name}} v{{version}}"

[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
Expand All @@ -30,9 +35,3 @@ codegen-units = 1
lto = true
panic = "abort"
strip = true

# https://github.com/crate-ci/cargo-release/
[workspace.metadata.release]
allow-branch = ["main"]
tag = false
tag-message = "Release {{crate_name}} v{{version}}"
1 change: 0 additions & 1 deletion crates/spellabet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "spellabet"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Convert characters into spelling alphabet code words"
Expand Down
1 change: 0 additions & 1 deletion crates/spellout/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "spellout"
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
description.workspace = true
Expand Down
Loading