mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
Put rand behind layout cache feature
This commit is contained in:
parent
0e89facb53
commit
2760e11145
@ -8,7 +8,7 @@ edition = "2018"
|
|||||||
default = ["cli", "fs", "layout-cache"]
|
default = ["cli", "fs", "layout-cache"]
|
||||||
cli = ["anyhow", "codespan-reporting", "fs", "pico-args", "same-file"]
|
cli = ["anyhow", "codespan-reporting", "fs", "pico-args", "same-file"]
|
||||||
fs = ["dirs", "memmap2", "same-file", "walkdir"]
|
fs = ["dirs", "memmap2", "same-file", "walkdir"]
|
||||||
layout-cache = []
|
layout-cache = ["rand"]
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
# Faster compilation
|
# Faster compilation
|
||||||
@ -25,7 +25,6 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg"]
|
|||||||
itertools = "0.10"
|
itertools = "0.10"
|
||||||
miniz_oxide = "0.4"
|
miniz_oxide = "0.4"
|
||||||
pdf-writer = { git = "https://github.com/typst/pdf-writer", rev = "a750b66" }
|
pdf-writer = { git = "https://github.com/typst/pdf-writer", rev = "a750b66" }
|
||||||
rand = "0.8"
|
|
||||||
rustybuzz = "0.4"
|
rustybuzz = "0.4"
|
||||||
serde = { version = "1", features = ["derive", "rc"] }
|
serde = { version = "1", features = ["derive", "rc"] }
|
||||||
ttf-parser = "0.12"
|
ttf-parser = "0.12"
|
||||||
@ -37,6 +36,7 @@ codespan-reporting = { version = "0.11", optional = true }
|
|||||||
dirs = { version = "3", optional = true }
|
dirs = { version = "3", optional = true }
|
||||||
memmap2 = { version = "0.3", optional = true }
|
memmap2 = { version = "0.3", optional = true }
|
||||||
pico-args = { version = "0.4", optional = true }
|
pico-args = { version = "0.4", optional = true }
|
||||||
|
rand = { version = "0.8", optional = true }
|
||||||
same-file = { version = "1", optional = true }
|
same-file = { version = "1", optional = true }
|
||||||
walkdir = { version = "2", optional = true }
|
walkdir = { version = "2", optional = true }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user