21 lines
416 B
TOML
21 lines
416 B
TOML
[package]
|
|
name = "swiftly-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
cord-expr = { path = "../../Cord/crates/cord-expr" }
|
|
cord-trig = { path = "../../Cord/crates/cord-trig" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.27"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|