typst/Cargo.toml

25 lines
401 B
TOML
Raw Normal View History

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