forked from dovahcrow/xtp-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 777 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
[package]
name = "xtp"
version = "0.1.0-alpha.4"
authors = ["Weiyuan Wu <[email protected]>"]
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/xtp"
repository = "https://github.com/dovahcrow/xtp-rs"
description = "A Rust binding for XTP SDK (https://xtp.zts.com.cn)"
keywords = ["XTP", "stock", "A-shares", "china", "trading"]
categories = ["api-bindings"]
readme = "README.md"
include = ["src/**/*", "Cargo.toml", "sdk/bin/include/*", "build.rs"]
[badges]
travis-ci = { repository = "dovahcrow/xtp-rs", branch = "master" }
[lib]
name = "xtp"
path = "src/lib.rs"
[dependencies]
libc = "0.2"
failure = "0.1"
[dev-dependencies]
structopt = "0.3"
paw = "1"
dotenv = "0.15"
log = "0.4"
env_logger = "0.7"
[build-dependencies]
bindgen = "0.52"
cc = "1.0"