-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 693 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 693 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
28
[package]
name = "chamkho-pg"
version = "0.3.0"
authors = ["Vee Satayamas <vsatayamas@gmail.com>"]
edition = "2021"
build = "build.rs"
rust-version = "1.77.2"
description = "A PostgreSQL extension, which its objective is enabling PostgreSQL full-text searching on SE Asian languages"
license = "GPLv2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "chamkho_parser"
crate-type = ["cdylib"]
[[bin]]
name = "adding-stmt"
path = "src/bin.rs"
[dependencies]
lazy_static = "1.4.0"
wordcut-engine = { git = "https://codeberg.org/mekong-lang/wordcut-engine.git" }
regex = "1"
cfg-if = "1.0.0"
[build-dependencies]
bindgen = "0.69.4"