-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.02 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 = "clojure-reader"
version = "0.2.0"
edition = "2021"
resolver = "2"
authors = ["Kevin Nakamura <grinkers@grinkers.net>"]
description = "A Clojure reader"
readme = "README.md"
repository = "https://github.com/grinkers/clojure-reader"
keywords = ["EDN", "no_std", "clojure"]
license = "Zlib"
[lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
future-incompatible = "warn"
unsafe_code = "deny"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
inline_always = "allow"
must_use_candidate = "allow"
unwrap_used = "warn"
[features]
arbitrary-nums = ["bigdecimal", "num-bigint"]
default = ["floats", "std"]
floats = ["ordered-float"]
full = ["default", "arbitrary-nums"]
std = []
[dependencies]
bigdecimal = { version = "0.4.6", default-features = false, optional = true }
num-bigint = { version = "0.4.6", default-features = false, optional = true }
ordered-float = { version = "4.2", default-features = false, optional = true }
[[example]]
name = "get-nth"