forked from ambuda-org/vidyut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 982 Bytes
/
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
[workspace]
members = [
"vidyut-chandas",
"vidyut-cheda",
"vidyut-kosha",
"vidyut-lipi",
"vidyut-prakriya",
"vidyut-sandhi",
]
[package]
name = "vidyut"
version = "0.1.0"
authors = ["Arun Prasad <ambuda.library@gmail.com>"]
description = "A Sanskrit toolkit"
homepage = "https://github.com/ambuda-org/vidyut"
repository = "https://github.com/ambuda-org/vidyut"
categories = ["text-processing"]
keywords = ["sanskrit"]
license = "MIT"
edition = "2021"
[dependencies]
vidyut-chandas = { path = "./vidyut-chandas" }
vidyut-cheda = { path = "./vidyut-cheda" }
vidyut-kosha = { path = "./vidyut-kosha" }
vidyut-lipi = { path = "./vidyut-lipi" }
vidyut-sandhi = { path = "./vidyut-sandhi" }
log = "0.4.17"
clap = "4.1.4"
csv = "1.1.6"
multimap = "0.8.3"
lazy_static = "1.4.0"
env_logger = "0.10.0"
rayon = "1.6.1"
rustc-hash = "1.1.0"
glob = "0.3.1"
[profile.release]
# Enable debug symbols so that we can profile release code.
debug = true
incremental = true