-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 771 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
[package]
name = "tugraph"
version = "0.1.4"
rust-version = "1.68.0"
authors = ["antkiller <eadrenking@outlook.com>"]
edition = "2021"
description = "A rust binding for the TuGraph library"
repository = "https://github.com/antkiller996/rust-tugraph"
license = "Apache-2.0"
categories = ["database"]
keywords = ["database", "graph", "binding"]
homepage = "https://github.com/antkiller996/rust-tugraph"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["libtugraph-sys", "plugin-example", "plugin-util", "plugin-util/src/proc_macros"]
[dependencies]
libtugraph-sys = { path = "./libtugraph-sys", version = "0.1.2" }
libc = "0.2"
chrono = "0.4"
[dev-dependencies]
tempfile = "3"