Skip to content

Commit

Permalink
Back to underscores we go because too late, we published them
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 13, 2024
1 parent a41abf4 commit 1abc0a6
Show file tree
Hide file tree
Showing 36 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .zed/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"command": "clippy"
},
"cargo": {
"features": ["merde/full", "merde-time/full", "merde-json/full"]
"features": ["merde/full", "merde_time/full", "merde_json/full"]
}
}
}
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[workspace]
resolver = "2"
members = ["merde", "merde-json", "merde-time", "merde-core"]
members = ["merde", "merde_json", "merde_time", "merde_core"]
exclude = ["zerodeps-example"]
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ check:
cargo check
cargo check --features=merde
cargo tree --prefix none --no-dedupe | grep -v merde-core
cargo tree --prefix none --no-dedupe --features=merde | grep merde-core
cargo tree --prefix none --no-dedupe --features=merde | grep merde_core
popd
12 changes: 6 additions & 6 deletions merde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ path = "examples/into-static.rs"
required-features = ["json"]

[dependencies]
merde-core = { version = "4.0.0", path = "../merde-core", optional = true }
merde-json = { version = "4.0.0", path = "../merde-json", optional = true }
merde-time = { version = "4.0.0", path = "../merde-time", optional = true }
merde_core = { version = "4.0.0", path = "../merde_core", optional = true }
merde_json = { version = "4.0.0", path = "../merde_json", optional = true }
merde_time = { version = "4.0.0", path = "../merde_time", optional = true }

[features]
default = ["core", "deserialize"]
full = ["core", "deserialize", "json", "time"]
deserialize = ["core"]
core = ["dep:merde-core"]
json = ["dep:merde-json"]
time = ["dep:merde-time"]
core = ["dep:merde_core"]
json = ["dep:merde_json"]
time = ["dep:merde_time"]
2 changes: 1 addition & 1 deletion merde/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ Your manifest could look like this:
merde = { version = "4.0.0", default-features = false, features = ["core"] }
```

And then you'd be able to use merde-provided types, like `CowStr`:
And then you'd be able to use merde_provided types, like `CowStr`:

```rust
use merde::CowStr;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion merde-core/Cargo.toml → merde_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
edition = "2021"
name = "merde-core"
name = "merde_core"
version = "4.0.0"
authors = ["Amos Wenger <[email protected]>"]
description = "Base types for merde"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions merde-json/Cargo.toml → merde_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "merde-json"
name = "merde_json"
version = "4.0.0"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
Expand All @@ -12,7 +12,7 @@ categories = ["encoding", "parser-implementations"]

[dependencies]
lexical-parse-float = { version = "0.8.5", features = ["format"] }
merde-core = { version = "4.0.0", path = "../merde-core" }
merde_core = { version = "4.0.0", path = "../merde_core" }
num-bigint = { version = "0.4.6", optional = true }
num-traits = { version = "0.2.19", optional = true }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions merde-time/Cargo.toml → merde_time/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
edition = "2021"
name = "merde-time"
name = "merde_time"
version = "4.0.0"
authors = ["Amos Wenger <[email protected]>"]
description = "Wrapper date-time types for merde"
Expand All @@ -11,8 +11,8 @@ keywords = ["merde", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde-core = { version = "4.0.0", path = "../merde-core", optional = true }
merde-json = { version = "4.0.0", path = "../merde-json", optional = true }
merde_core = { version = "4.0.0", path = "../merde_core", optional = true }
merde_json = { version = "4.0.0", path = "../merde_json", optional = true }
time = "0.3.36"

[dev-dependencies]
Expand All @@ -21,7 +21,7 @@ time = { version = "0.3.36", features = ["macros"] }
[features]
default = []
full = ["merde", "json", "serialize", "deserialize"]
merde = ["dep:merde-core"]
json = ["merde", "dep:merde-json"]
merde = ["dep:merde_core"]
json = ["merde", "dep:merde_json"]
serialize = ["time/formatting"]
deserialize = ["time/parsing"]
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion zerodeps-example/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions zerodeps-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
merde = { version = "4.0.0", path = "../merde", default-features = false }
merde-core = { version = "4.0.0", path = "../merde-core", default-features = false }
merdelcore = { version = "4.0.0", path = "../merde_core", default-features = false }

[features]
default = []
merde = ["merde/core", "merde-core/compact_str"]
merde = ["merde/core", "merde_core/compact_str"]

0 comments on commit 1abc0a6

Please sign in to comment.