-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 764 Bytes
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
[package]
name = "codex"
version = "0.2.0"
rust-version = "1.88" # also change in ci.yml
authors = ["The Typst Project Developers"]
edition = "2024"
description = "Human-friendly notation for Unicode symbols."
repository = "https://github.com/typst/codex"
readme = "README.md"
license = "Apache-2.0"
categories = ["encoding", "text-processing"]
keywords = ["unicode", "symbols"]
[features]
default = ["numeral-systems", "styling"]
numeral-systems = ["dep:chinese-number"]
styling = []
_test-unicode-conformance = ["ureq"]
[dependencies]
chinese-number = { version = "0.7.7", default-features = false, features = ["number-to-chinese"], optional = true }
[dev-dependencies]
siphasher = "1.0.2"
[build-dependencies]
ureq = { version = "3.0.12", optional = true }