Skip to content

Commit 2a96ea1

Browse files
committed
Initialized.
0 parents  commit 2a96ea1

31 files changed

+6269
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
/.vscode
3+
Cargo.lock

Cargo.toml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[package]
2+
name = "tcmb_evds_c"
3+
version = "0.1.0"
4+
authors = ["asari555 <asari571@gmail.com>"]
5+
edition = "2018"
6+
build = "build.rs"
7+
8+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9+
10+
[features]
11+
default = ["sync_mode"]
12+
async_mode = []
13+
sync_mode = []
14+
15+
[build-dependencies]
16+
cbindgen = "0.20"
17+
18+
[dependencies]
19+
curl = "0.4.38"
20+
libc = "0.2"
21+
22+
[lib]
23+
name = "tcmb_evds_c"
24+
crate-type = ["cdylib", "staticlib"]
25+
26+
[target.x86_64-apple-darwin]
27+
linker = "x86_64-apple-darwin15-gcc"
28+
ar = "x86_64-apple-darwin15-ar"

0 commit comments

Comments
 (0)