Skip to content

Commit 6b0a85d

Browse files
committed
Fix missing readme
1 parent 09bd5e7 commit 6b0a85d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[workspace]
2+
resolver = "2"
23
members = ["projects/*"]
34
default-members = [
45
"projects/syntax-error",

projects/syntax-error/Cargo.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
[package]
22
name = "syntax-error"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
authors = ["Aster <[email protected]>"]
55
description = "Syntax error report"
66
repository = "https://github.com/oovm/sub_projects"
77
documentation = "https://docs.rs/syntax-error"
8-
readme = "Readme.md"
8+
readme = "readme.md"
99
license = "MPL-2.0"
1010
edition = "2021"
1111
exclude = ["package.json", "tests/**"]
1212

1313
[dependencies]
14-
#termcolor = "1.2.0"
15-
yansi = "0.5.1"
14+
yansi = "1.0.1"
1615
unicode-width = "0.1.10"
1716

1817
[dev-dependencies]

projects/syntax-error/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc = include_str!("../README.md")]
1+
#![doc = include_str!("../readme.md")]
22
#![warn(missing_docs)]
33

44
mod display;

0 commit comments

Comments
 (0)