-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (25 loc) · 923 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
[package]
authors = ["Ronnie Chowdhury <[email protected]>"]
description = "A simple macro that helps write Excel UDF functions in Rust"
edition = "2018"
keywords = ["excel", "userdefined", "udf"]
license = "MIT"
name = "xladd-derive"
readme = "Readme.MD"
repository = "https://github.com/ronniec95/xladd-derive"
version = "0.7.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
com = {version = "0.3", features = ["production"]}
log = "^0.4"
ndarray = {version = "^0.14", optional = true}
proc-macro2 = "1"
quote = "1"
syn = {version = "1", features = ["full", "extra-traits"]}
widestring = "0.4"
winapi = {version = "0.3", features = ["oaidl", "combaseapi", "oleauto"]}
#xladd = {path = "../xladd", features = ["use_ndarray"]}
[lib]
proc-macro = true
[patch.crates-io]
xladd = {git = "https://github.com/ronniec95/xladd", features = ["use_ndarray"]}