Files
IronCalc/xlsx/Cargo.toml
Nicolás Hatcher Andrés 196e074ef5 UPDATE: Serialize/Deserialize with bitcode (#31)
* UPDATE: Serialize/Deserialize with bitcode

Fixes #12
2024-04-11 23:45:00 +02:00

42 lines
1.1 KiB
TOML

[package]
name = "ironcalc"
version = "0.1.3"
authors = ["Nicolás Hatcher <nicolas@theuniverse.today>"]
edition = "2021"
homepage = "https://www.ironcalc.com"
repository = "https://github.com/ironcalc/ironcalc/"
description = "The democratization of spreadsheets"
license = "MIT OR Apache-2.0"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zip = "0.6"
roxmltree = "0.19"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
# Uses `../base` when used locally, and uses
# the inicated version from crates.io when published.
# https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
ironcalc_base = { path = "../base", version = "0.1.0" }
itertools = "0.12"
chrono = "0.4"
bitcode = "0.6.0"
[dev-dependencies]
uuid = { version = "1.2.2", features = ["serde", "v4"] }
[lib]
name = "ironcalc"
path = "src/lib.rs"
[[bin]]
name = "test"
path = "src/bin/test.rs"
[[bin]]
name = "documentation"
path = "src/bin/documentation.rs"