build(orgize): disable nom default features

This commit is contained in:
PoiScript 2019-10-09 13:06:59 +08:00
parent e344943f6b
commit 8b14b8a2e9

View file

@ -26,7 +26,8 @@ indextree = "4.0.0"
jetscii = "0.4.4" jetscii = "0.4.4"
lazy_static = "1.4.0" lazy_static = "1.4.0"
memchr = "2.2.1" memchr = "2.2.1"
nom = "5.0.1" # we don't need to parse any float number, so lexical crate is redundant
nom = { version = "5.0.1", default-features = false, features = ["std"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde_indextree = { version = "0.2.0", optional = true } serde_indextree = { version = "0.2.0", optional = true }
syntect = { version = "3.3.0", optional = true } syntect = { version = "3.3.0", optional = true }