Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/feature-fix-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:

if [ "$ISSUE_STATE" = "OPEN" ]; then
# Get recent commits for this branch
RECENT_COMMITS=$(git log "origin/develop..${{ github.ref_name }}" --pretty=format:'- %s (%h)' | head -3)
RECENT_COMMITS=$(git log "origin/develop..${{ github.ref_name }}"-n 3 --pretty=format:'- %s (%h)')

gh issue comment "$ISSUE_NUM" --body "🔄 **Update from \`${{ github.ref_name }}\`**

Expand Down
225 changes: 0 additions & 225 deletions CHANGELOG_v1.5.md

This file was deleted.

2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 20 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
[package]
name = "apexstore"
name = "apex-store-rs" # Alterado para ser único no crates.io
version = "2.1.0"
edition = "2021"
authors = ["Elio Neto <netoo.elio@hotmail.com>"]
license = "MIT"
repository = "https://github.com/ElioNeto/ApexStore"
description = "A high-performance LSM-tree storage engine with SSTable V2 format"
homepage = "https://github.com/ElioNeto/ApexStore"
documentation = "https://elioneto.github.io/ApexStore/"
readme = "README.md"
description = "A high-performance, embedded LSM-tree storage engine with SSTable V2 format, LZ4 compression, and Bloom Filters."
keywords = ["database", "lsm-tree", "key-value", "storage-engine", "embedded"]
categories = ["database-implementations", "data-structures"]
# Impede que arquivos de banco de dados locais sejam enviados no pacote
exclude = [
"data/*",
"target/*",
"*.sst",
"*.log",
".env",
"docs/assets/*"
]

[[bin]]
name = "apexstore-server"
path = "src/bin/server.rs"

[[bin]]
name = "cli"
name = "apexstore-cli" # Renomeado de 'cli' para evitar conflitos globais
path = "src/bin/cli.rs"

[lib]
name = "apexstore"
name = "apexstore" # Mantido para que você use `use apexstore;` no seu código
path = "src/lib.rs"

[features]
Expand Down Expand Up @@ -55,6 +69,7 @@ criterion = { version = "0.5", features = ["html_reports"] }
opt-level = 3
lto = true
codegen-units = 1
panic = "abort" # Opcional: reduz o tamanho do binário

[profile.bench]
inherits = "release"
inherits = "release"
Loading
Loading