-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 967 Bytes
/
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
34
[package]
name = "delta"
version = "0.1.1"
authors = ["raimond visser"]
license = "MIT/Apache-2.0"
keywords = ["editor", "web", "delta"]
readme = "README.md"
repository = "https://github.com/mundo-68/quill-delta-rs"
homepage = "https://github.com/mundo-68/quill-delta-rs"
documentation = "https://mundo-68.github.io/quill-delta-rs"
edition = "2021"
desciption = "A Rust re-implementation of the Quill Delta document format."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[profile.release]
lto = true
opt-level = 's'
[dependencies]
anyhow = "1.0.*"
thiserror = "1.0.*"
diffs = { path = "./diffs" }
log = "0.4.*"
serde = { version = "1.*", default-features = false, features = ["derive"], optional = true }
serde_derive = { version = "1.*", optional = true }
serde_json = { version = "1.*", optional = true }
[features]
default = ["json"]
json = ["serde", "serde_json", "serde_derive"]