-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (47 loc) · 1.55 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/*",
]
resolver = "2"
[workspace.package]
version = "0.5.3"
authors = ["Masato TOYOSHIMA", "phoepsilonix <[email protected]>"]
edition = "2021"
rust-version = "1.82"
homepage = "https://github.com/phoepsilonix/dict-to-mozc"
documentation = "https://github.com/phoepsilonix/dict-to-mozc"
repository = "https://github.com/phoepsilonix/dict-to-mozc"
license = "MIT"
[workspace.dependencies]
lib-dict-to-mozc = { path = "./crates/dict-to-mozc" }
argh = { version = "0.1.12", default-features = false }
csv = { version = "1.3.0", default-features = true }
kanaria = { git = "https://github.com/phoepsilonix/kanaria.git", rev = "18ca812a1fe8c7f30a753aecc2681db1f18031e8", version = "0.2.1", default-features = false }
lazy-regex = { version = "3.3.0", default-features = false, features = ["unicode"] }
indexmap = { version = "2.6.0", default-features = false, features = [] }
hashbrown = { version = "0.15.0", default-features = false, features = [ "allocator-api2", "default-hasher", "equivalent", "inline-more", "raw-entry"] }
[profile.release]
strip = true
lto = true
overflow-checks = true
codegen-units = 1
panic = "abort"
[workspace.metadata.release]
allow-branch = ["main"]
shared-version = true
tag = false
[package]
name = "dict-to-mozc"
edition.workspace = true
authors.workspace = true
rust-version.workspace = true
repository.workspace = true
license.workspace = true
version.workspace = true
[dependencies]
lib-dict-to-mozc = { workspace = true }
[package.metadata.release]
tag = true
tag-prefix =""
[[bin]]
name = "dict-to-mozc"