Compare commits

...

3 Commits

Author SHA1 Message Date
mike dupont b3b96da7f0 feat: Add/update Nix flake for submodule (CRQ-016) 2025-12-01 12:47:14 -05:00
mike 96399c551e wip packaging for cargo2nix 2025-11-20 02:56:23 +00:00
mike 4afb8049ed wip 2025-11-18 00:23:07 +00:00
3 changed files with 10 additions and 9 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
.idea .idea
rls*.log rls*.log
tarpaulin-report.html tarpaulin-report.html
process-repo.log

View File

@ -1,5 +1,5 @@
[workspace] # [workspace]
members = ["derive", "compatibility"] # members = ["derive", "compatibility"]
[package] [package]
name = "bincode" name = "bincode"
@ -10,7 +10,7 @@ authors = [
"Victor Koenders <bincode@trangar.com>", "Victor Koenders <bincode@trangar.com>",
] ]
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"] exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]
rust-version = "1.85.0" # rust-version = "1.85.0"
publish = true publish = true
@ -39,7 +39,7 @@ unty = "0.0.4"
# Used for tests # Used for tests
[dev-dependencies] [dev-dependencies]
ouroboros = "0.18.3" ouroboros = "0.18.3"
serde_derive = "1.0" serde_derive = { workspace = true }
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
tempfile = "3.2" tempfile = "3.2"
criterion = "0.6" criterion = "0.6"
@ -63,10 +63,10 @@ harness = false
name = "string" name = "string"
harness = false harness = false
[profile.bench] # [profile.bench]
codegen-units = 1 # codegen-units = 1
debug = 1 # debug = 1
lto = true # lto = true
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

View File

@ -6,7 +6,7 @@ authors = [
"Victor Koenders <bincode@trangar.com>", "Victor Koenders <bincode@trangar.com>",
] ]
edition = "2021" edition = "2021"
rust-version = "1.85.0" # rust-version = "1.85.0"
repository = "https://github.com/bincode-org/bincode" repository = "https://github.com/bincode-org/bincode"
documentation = "https://docs.rs/bincode_derive" documentation = "https://docs.rs/bincode_derive"