forked from amazon-ion/ion-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 811 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
[package]
name = "ion-c-sys"
authors = ["Amazon Ion Team <ion-team@amazon.com>"]
description = "Bindings to Amazon Ion C"
homepage = "https://github.com/amzn/ion-rust"
repository = "https://github.com/amzn/ion-rust"
license = "Apache-2.0"
readme = "README.md"
keywords = ["ion", "parser", "json", "format", "serde"]
categories = ["encoding", "parser-implementations"]
exclude = [
"**/.git/**",
"**/.github/**",
"**/.travis.yml",
"**/.appveyor.yml",
"**/ion-tests/iontestdata/**",
"*.pdf"
]
version = "0.4.11"
edition = "2018"
[dependencies]
ion-c-sys-macros = { version = "0.1", path = "../ion-c-sys-macros" }
paste = "1.0"
num-bigint = "0.3"
bigdecimal = "0.2"
chrono = "0.4"
[build-dependencies]
cmake = "0.1"
bindgen = "0.58"
[dev-dependencies]
rstest = "0.9"
rstest_reuse = "0.1"