-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
40 lines (38 loc) · 1.17 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
[workspace]
resolver = "2"
members = [
"unic-langid",
"unic-langid-impl",
"unic-langid-macros",
"unic-langid-macros-impl",
"unic-locale",
"unic-locale-impl",
"unic-locale-macros",
"unic-locale-macros-impl",
]
[workspace.package]
version = "0.9.5"
authors = ["Zibi Braniecki <[email protected]>"]
edition = "2021"
repository = "https://github.com/zbraniecki/unic-locale"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["internationalization"]
include = [
"src/**/*",
"benches/*.rs",
"tests/*.rs",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
]
[workspace.dependencies]
unic-langid-impl = { version = "0.9.5", path = "unic-langid-impl" }
unic-langid = { version = "0.9.5", path = "unic-langid" }
unic-langid-macros-impl = { version = "0.9.5", path = "unic-langid-macros-impl" }
unic-langid-macros = { version = "0.9.5", path = "unic-langid-macros" }
unic-locale-impl = { version = "0.9.5", path = "unic-locale-impl" }
unic-locale = { version = "0.9.5", path = "unic-locle" }
unic-locale-macros-impl = { version = "0.9.5", path = "unic-locale-macros-impl" }
unic-locale-macros = { version = "0.9.5", path = "unic-locale-macros" }