Skip to content

Commit 61fa505

Browse files
committed
Rename to 'plutus-ledger-api'
1 parent bbacde8 commit 61fa505

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "plutus-ledger-types"
2+
name = "plutus-ledger-api"
33
version = "0.1.0"
44
edition = "2021"
55

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Plutus Ledger types
1+
# Plutus Ledger API
22

3-
Plutus Ledger types implemented Rust.
3+
Plutus Ledger types and utilities implemented in Rust.
44
This library is still in development and not ready to be used in production.

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
perSystem = { self', pkgs, system, ... }:
2828
let
2929
overlays = [ (import rust-overlay) ];
30-
crateName = "plutus-ledger-types-rust";
30+
crateName = "plutus-ledger-api";
3131
rustWithTools = pkgs.rust-bin.stable.latest.default.override {
3232
extensions = [ "rustfmt" "rust-analyzer" "clippy" ];
3333
};

tests/plutus_data.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[cfg(test)]
22
mod plutusdata_roundtrip_tests {
3-
use plutus_ledger_types::generators::correct::*;
4-
use plutus_ledger_types::plutus_data::{FromPlutusData, PlutusDataError, ToPlutusData};
3+
use plutus_ledger_api::generators::correct::*;
4+
use plutus_ledger_api::plutus_data::{FromPlutusData, PlutusDataError, ToPlutusData};
55
use proptest::collection::{btree_map, btree_set, vec};
66
use proptest::option;
77
use proptest::prelude::*;

0 commit comments

Comments
 (0)