-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1 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
[package]
name = "include_display_mode_tex"
version = "0.1.5"
authors = ["Dmitrii Demenev <[email protected]>"]
edition = "2021"
rust-version = "1.59.0" # https://github.com/foresterre/cargo-msrv/issues/244
description = "A library for embedding TeX formulae in documentation."
documentation = "https://docs.rs/include_display_mode_tex"
readme = "README.md"
repository = "https://github.com/JohnScience/include_display_mode_tex"
license = "MIT OR Apache-2.0"
# license-file | not needed
keywords = ["tex", "latex", "docs", "documentation"]
categories = ["development-tools"] # lack of category slug
# workspace | not needed
# build | not needed
# links | not needed
# exclude | not needed
autobins = false
autoexamples = false
autotests = false
autobenches = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
proc-macro2 = "1.0.36"
syn = {version = "1.0.84", features = ["parsing"] }
quote = "1.0.14"
relative-path = "1.6.0"
[lib]
proc-macro = true