Skip to content

Commit 65a700e

Browse files
committed
bump (#3)
1 parent c3c8e0d commit 65a700e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[workspace]
2+
resolver = "3"
23
members = ["kfl", "kfl-derive"]

kfl-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "kfl-derive"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
description = "A derive implementation for kfl KDL parser"
66
license = "MIT/Apache-2.0"
77
keywords = ["kdl", "configuration"]
88
categories = ["no-std"]
9-
homepage = "https://gitlab.com/synthetic/kfl/kfl"
9+
homepage = "https://github.com/rinarakaki/kfl"
1010
documentation = "https://docs.rs/kfl-derive"
1111
rust-version = "1.85.0"
1212
readme = "README.md"

kfl/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "kfl"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition = "2024"
55
description = "Another KDL language implementation"
66
license = "MIT/Apache-2.0"
77
keywords = ["kdl", "configuration", "parser"]
88
categories = ["parsing", "parser-implementations", "config", "encoding"]
9-
homepage = "https://gitlab.com/synthetic/kfl/kfl"
9+
homepage = "https://github.com/rinarakaki/kfl"
1010
documentation = "https://docs.rs/kfl"
1111
rust-version = "1.85.0"
12-
readme = "README.md"
12+
readme = "../README.md"
1313

1414
[dependencies]
15-
kfl-derive = { path = "../kfl-derive", version = "0", optional = true }
15+
kfl-derive = { path = "../kfl-derive", version = "0.5.0", optional = true }
1616
chumsky = { version = "= 1.0.0-alpha.7" }
1717
thiserror = "2"
1818
miette = "7"
@@ -22,8 +22,8 @@ miette = "7"
2222
base64 = { version = "0.22", optional = true }
2323
chrono = { version = "0.4", optional = true }
2424
http = { version = "1", optional = true }
25-
minicbor = { version = "0.24", optional = true, features = ["std", "derive"] }
26-
unicode-width = { version = "0.1", optional = true }
25+
minicbor = { version = "2", optional = true, features = ["std", "derive"] }
26+
unicode-width = { version = "0.2", optional = true }
2727

2828
[dev-dependencies]
2929
miette = { version = "7", features = ["fancy"] }

kfl/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![no_std]
2-
#![doc = include_str!("../../README.md")]
32
#![warn(missing_docs)]
43
#![warn(missing_debug_implementations)]
54
extern crate alloc;

0 commit comments

Comments
 (0)