Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e70279d
feat: refactor
stifskere Mar 14, 2025
82aeb23
feat: translation obtention refactoring && workspace creation
stifskere Mar 23, 2025
6c4e9e2
feat: add Into<TokenStream> for NestingType and refactor what's there
stifskere Mar 24, 2025
20ce1c5
feat: simplified load_translation_static
stifskere Mar 24, 2025
455cd5d
feat: exported enums for runtime handling
stifskere Mar 24, 2025
603eac5
feat: finished generation functions
stifskere Mar 25, 2025
aae5961
feat: first version of translation macros
stifskere Mar 25, 2025
fbdb9f8
chore: tests pass
stifskere Mar 25, 2025
e3d89c0
fix: error messages
stifskere Mar 25, 2025
45544d5
feat: add similarities limit
stifskere Mar 25, 2025
be45b34
chore: clippy suggestions and code formatting
chikof Mar 25, 2025
071568d
chore: remove unnecessary `.into()`
chikof Mar 25, 2025
33965a0
fix: hide all the variables that shouldn't be used by the user
stifskere Mar 26, 2025
d574d5b
feat: add cause method to error for convenience
stifskere Mar 26, 2025
c3206bb
chore: remove docs from docs hidden
stifskere Mar 26, 2025
09206d7
fix: use overlap
stifskere Mar 26, 2025
d3b03bc
docs: improved readme with real data
stifskere Mar 26, 2025
a6d0f1e
docs: remove configuration as it is sub category of usage
stifskere Mar 26, 2025
b623fbc
docs: fix readme escapes
stifskere Mar 26, 2025
ca8daa1
docs: fix indent for app tree and add miniscript for config values
stifskere Mar 26, 2025
494a9aa
docs: clarify return types on behavior matrix
stifskere Mar 26, 2025
d24260b
feat: add PathNotFound in runtime errors
stifskere Mar 26, 2025
3bcc1ec
fix: fix translation format and sync with tests (tests won't pass unt…
stifskere Mar 26, 2025
df71e10
docs: code documentation and rustfmt file
Mar 27, 2025
01d38db
fix: change #[doc(hidden)] place for NestingType::get_path
stifskere Mar 27, 2025
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
196 changes: 174 additions & 22 deletions Cargo.lock

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

18 changes: 3 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
[package]
name = "translatable"
version = "0.1.0"
edition = "2024"

[lib]
proc-macro = true

[dependencies]
quote = "1.0.38"
serde = { version = "1.0.218", features = ["derive"] }
strum = { version = "0.27.1", features = ["derive"] }
syn = { version = "2.0.98", features = ["full"] }
thiserror = "2.0.11"
toml = "0.8.20"
[workspace]
resolver = "2"
members = [ "translatable", "translatable_proc" ]
Loading