-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 866 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
[package]
name = "xcsp3-rust"
version = "0.1.0"
edition = "2021"
rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
keywords = [
"xml",
"csp",
"xcsp3",
"combinatorial",
"parser",
]
authors = [
"Luhan Zhen <zhenlh20@mails.jlu.edu.cn>",
]
include = [
"src/*",
"README.md",
"LICENSE",
]
description = "xcsp3-rust is a library that help constraint programming solvers implemented by Rust to read XCSP3 files."
readme = "README.md"
categories = ["Text processing"]
license = "MIT"
repository = "https://github.com/luhanzhen/xcsp3-rust"
[dependencies]
quick-xml = {version = "0.29.0", features = ["serialize"]}
serde = {version = "1.0.166", features = ["serde_derive"]}
walkdir = {version = "2.3.3"}
regex = "1.9.1"
[lib]
name = "xcsp3_rust"
path = "src/lib.rs"