-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
48 lines (41 loc) · 1.27 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
[package]
edition = "2018"
name = "rust_icu_common"
version = "5.0.0"
authors = ["Google Inc."]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/google/rust_icu"
description = """
Native bindings to the ICU4C library from Unicode.
Commonly used types.
"""
keywords = ["icu", "unicode", "i18n", "l10n"]
[dependencies]
anyhow = "1.0.25"
thiserror = "1.0.9"
rust_icu_sys = { path = "../rust_icu_sys", version = "5.0.0", default-features = false}
# See the feature description in ../rust_icu_sys/Cargo.toml for details.
[features]
default = ["use-bindgen", "renaming", "icu_config"]
use-bindgen = ["rust_icu_sys/use-bindgen"]
renaming = ["rust_icu_sys/renaming"]
icu_config = ["rust_icu_sys/icu_config"]
icu_version_in_env = ["rust_icu_sys/icu_version_in_env"]
icu_version_64_plus = [
"rust_icu_sys/icu_version_64_plus",
]
icu_version_67_plus = [
"rust_icu_sys/icu_version_67_plus",
]
icu_version_68_plus = [
"rust_icu_sys/icu_version_68_plus",
]
icu_version_69_max = [
"rust_icu_sys/icu_version_69_max",
]
[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "google/rust_icu" }
is-it-maintained-open-issues = { repository = "google/rust_icu" }
travis-ci = { repository = "google/rust_icu", branch = "main" }