typst/Cargo.toml

22 lines
369 B
TOML
Raw Normal View History

2019-02-12 21:31:35 +01:00
[package]
2019-10-09 19:45:40 +02:00
name = "typst"
2019-02-12 21:31:35 +01:00
version = "0.1.0"
authors = ["Laurenz Mädje <laurmaedje@gmail.com>"]
edition = "2018"
[dependencies]
2019-10-09 19:45:40 +02:00
tide = { path = "../tide" }
toddle = { path = "../toddle" }
2019-03-03 15:00:27 +01:00
byteorder = "1"
2019-06-21 22:12:36 +02:00
smallvec = "0.6.10"
unicode-xid = "0.1.0"
2019-04-29 17:25:23 +02:00
[[bin]]
2019-10-09 19:45:40 +02:00
name = "typstc"
2019-04-29 17:25:23 +02:00
path = "src/bin/main.rs"
2019-10-11 20:28:22 +02:00
[[test]]
name = "layouting"
path = "tests/layouting.rs"
harness = false