1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-21 08:31:15 +03:00
nickel/pyckel/Cargo.toml
Viktor Kleen 3e03cc7909
Move the CLI into its own crate (#1351)
* Fetch the wasm-bindgen-cli version from Cargo.lock instead of Cargo.toml

* Move the Nickel CLI to a separate crate

* Fix snapshot tests

* Rename the nickel flake output to nickel-lang-cli for consistency

* Move the nickel-lang crate into a subdirectory

* Update documentation for the new crate split

* Tweak snapshot test instructions

* Use project_root instead of ad-hoc environment variables

* Remove the library from nickel-lang-cli for now

* Rename nickel-lang to nickel-lang-lib and nickel-lang-cli to nickel-lang

* Apply suggestions from code review

Co-authored-by: Yann Hamdaoui <yann.hamdaoui@tweag.io>

* Tweak documentation for nickel_lang_utilities::project_root

* Use MacOS 13 github runner because of https://github.com/cachix/install-nix-action/issues/183

---------

Co-authored-by: Yann Hamdaoui <yann.hamdaoui@tweag.io>
2023-06-16 16:34:13 +00:00

20 lines
536 B
TOML

[package]
name = "pyckel"
readme = "README.md"
description = "Python bindings for the Nickel programming language."
authors.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
[dependencies]
nickel-lang-lib = {default-features = false, path = "../nickel-lang-lib", version = "1.0.0" }
pyo3 = { version = "0.17.3", features = ["extension-module"] }
codespan-reporting = "0.11"
[lib]
crate-type = ["cdylib", "rlib"]