-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1.13 KB
/
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
37
38
[package]
name = "fsharp-definitions"
version = "0.1.11"
description = "serde support for exporting FSharp definitions"
readme = "README.md"
authors = ["Tim Ryan <id@timryan.org>", "Sam Rijs <srijs@airpost.net>" , "Ian Castleden <ian.castleden@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/arabidopsis/fsharp-definitions"
keywords =["fsharp", "serde"]
categories = ["data-structures", "development-tools", "wasm" , "web-programming"]
edition = "2018"
exclude = ['scripts/*', 'templates/*' ]
[dependencies]
serde = "1.0"
fsharp-definitions-derive = { version = "0.1.10", path = "fsharp-definitions-derive" }
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
wasm-bindgen = "0.2"
quote = "0.6.11"
proc-macro2 = "0.4.27"
regex = "1.1.0"
serde_json = "1.0.38"
# insta = "0.6.2"
insta = { version="0.6" }
chrono = { version = "0.4", features = ["serde"] }
arrayvec = { version="0.5.1", features = ["serde"] }
# compiletest_rs = "*"
rusty-hook = "^0.11.2"
[features]
test = ["fsharp-definitions-derive/test"]
export-fsharp = ["fsharp-definitions-derive/export-fsharp"]
# [workspace]
# exclude = ["example"]