-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (65 loc) · 1.77 KB
/
Cargo.toml
File metadata and controls
78 lines (65 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
resolver = "2"
members = [
"examples/example-rust",
"crates/*",
]
[workspace.lints.rust]
unsafe_code = "deny"
unused_must_use = "deny"
missing_docs = "warn"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
unreachable = "deny"
unimplemented = "deny"
todo = "deny"
indexing_slicing = "deny"
[workspace.package]
version = "0.0.10"
edition = "2024"
authors = ["roman <roman@luup-systems.com>"]
description = "Polyglot, type-safe internationalization"
license-file = "LICENSE"
readme = "README.md"
homepage = "https://github.com/LuupSystems/globetrotter"
repository = "https://github.com/LuupSystems/globetrotter"
[profile.dev]
debug = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = "symbols"
[workspace.dependencies]
thiserror = "2"
tracing = "0"
itertools = "0"
strum = { version = "0", features = ["derive"] }
indoc = "2"
# serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
indexmap = { version = "2", features = ["serde"] }
# async runtime
tokio = { version = "1", features = ["full"] }
futures = "0"
# testing
color-eyre = "0"
similar-asserts = "1"
# CLI
clap = { version = "4", features = ["derive", "env"]}
# Diagnostics
codespan-reporting = "0.13"
# templating
handlebars = "6"
# workspace crates
globetrotter = { path = "./crates/globetrotter/" }
globetrotter-model = { path = "./crates/globetrotter-model/" }
globetrotter-cli = { path = "./crates/globetrotter-cli/" }
globetrotter-rust = { path = "./crates/globetrotter-rust/" }
globetrotter-php = { path = "./crates/globetrotter-php/" }
globetrotter-python = { path = "./crates/globetrotter-python/" }
globetrotter-typescript = { path = "./crates/globetrotter-typescript/" }
globetrotter-golang = { path = "./crates/globetrotter-golang/" }