A Cargo subcommand to bundle your code into one .rs
file for competitive programming.
See CHANGELOG.md or Releases for recent updates.
cargo-equip can
--exclude-{atcoder, codingame}-crates
),#[macro_export]
ed macros,#[cfg(..)]
,--remove
),--minify
),```toml [package] name = "library-checker" version = "0.0.0" edition = "2018"
[dependencies] ac-library-rs-parted-modint = { git = "https://github.com/qryxip/ac-library-rs-parted" } proconio = { version = "0.4.3", features = ["derive"] } qryxip-competitive-tonelli-shanks = { git = "https://github.com/qryxip/competitive-programming-library" }
```
```rust use aclmodint::ModInt; use proconio::{fastout, input}; use tonellishanks::ModIntBaseExt as _;
fn main() { input! { yps: [(u32, u32)], }
for (y, p) in yps {
ModInt::set_modulus(p);
if let Some(x) = ModInt::new(y).sqrt() {
println!("{}", x);
} else {
println!("-1");
}
}
}
mod sub {
// You can also use
the crate in submodules.
#[allow(unused_imports)]
use proconio::input as _;
} ```
↓
```console ❯ cargo equip \
--remove docs `# Remove doc comments` \ --minify libs `# Minify each library` \ --bin sqrt_mod `# Specify the bin crate` | xsel -b
```
Submit Info #59239 - Library-Checker
Install a nightly
toolchain and cargo-udeps first.
console
❯ rustup update nightly
console
❯ cargo install cargo-udeps
console
❯ cargo install cargo-equip
master
branchconsole
❯ cargo install cargo-equip --git https://github.com/qryxip/cargo-equip
Follow these constrants when you writing libraries to bundle.
Set package.edition
to "2018"
.
"2015"
is not supported.
Do not use procedural macros in lib
crates.
You can pub use
them, but cannot call.
Use $crate
instead of crate
in macros.
cargo-equip replaces $crate
in macro_rules!
with $crate::extern_crate_name_in_main_crate
.
crate
identifiers in macro_rules!
are not modified.
Do not use absolute path as possible.
cargo-equip replaces crate
with crate::extern_crate_name_in_main_crate
and pub(crate)
with pub(in crate::extern_crate_name_in_main_crate)
.
However I cannot ensure this works well.
Use self::
and super::
instead of crate::
.
diff
-use crate::foo::Foo;
+use super::foo::Foo;
If possible, do not use glob import.
cargo-equip inserts glob imports as substitutes for extern prelude and #[macro_use]
.
Split into small separate crates as possible.
cargo-equip does not search "dependencies among items".
On a website other except AtCoder, Split your library into small crates to fit in 64KiB.
console
.
├── a
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── b
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
⋮
When you finish preparing your library crates, add them to [dependencies]
of the bin
/example
.
If you generate packages automatically with a tool, add them to its template.
If you want to use rust-lang-ja/ac-library-rs, use qryxip/ac-library-rs-parted instead.
toml
[dependencies]
ac-library-rs-parted = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-convolution = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-dsu = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-fenwicktree = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-lazysegtree = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-math = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-maxflow = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-mincostflow = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-modint = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-scc = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-segtree = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-string = { git = "https://github.com/qryxip/ac-library-rs-parted" }
ac-library-rs-parted-twosat = { git = "https://github.com/qryxip/ac-library-rs-parted" }
The constraints for bin
s/example
s are:
If you use proc-macro
crates, make sure the macro names unique.
If you have trouble about procedural macro names, you can import them with #[macor_use].
If possible, do not use glob import.
cargo-equip also inserts glob imports as it does into libraries.
```rust pub use _cargoequip::prelude::*;
// ︙
pub mod _cargoequip { pub mod crates { // ︙ } // ︙
pub(crate) prelude {
pub use crate::__cargo_equip::crates::*;
}
} ```
```rust use input::input; use mic::answer; use partition_point::RangeBoundsExt as _;
fn main() -> _ { input! { a: [u64], } a.intoiter() .map(|a| (1u64..1000000000).partition_point(|ans| ans.pow(2) < a)) } ```
Then execute cargo-equip
.
console
❯ cargo equip --bin "$name"
#[cfg(…)]
By default, cargo-equip
#[cfg(always_true_predicate)]
(e.g. cfg(feature = "enabled-feature")
).#[cfg(always_false_preducate)]
(e.g. cfg(test)
, cfg(feature = "disable-feature")
).Predicates are evaluated according to this rule.
test
: false
proc_macro
: false
cargo_equip
: true
feature
: true
for those enabled```rust
pub mod a { pub struct A;
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
} ```
↓
```rust
pub mod a { pub struct A; } ```
By default, cargo-equip creates a temporary package that shares the current target directory and execute cargo check
before outputting.
console
Checking cargo-equip-check-output-6j2i3j3tgtugeaqm v0.1.0 (/tmp/cargo-equip-check-output-6j2i3j3tgtugeaqm)
Finished dev [unoptimized + debuginfo] target(s) in 0.11s
cargo-equip can expand procedural macros.
```rust use memoise::memoise; use proconio_derive::fastout;
fn main() { for i in 0..=10 { println!("{}", fib(i)); } }
fn fib(n: i64) -> i64 { if n == 0 || n == 1 { return n; } fib(n - 1) + fib(n - 2) } ```
proc-macro
crates need to be compile with Rust 1.48.0+.
If version of the active toolchain is less than 1.48.0, cargo-equip finds an alternative toolchain and uses it for compiling proc-macro
s.pub use $name::*;
are also able to be expanded.--remove <REMOVE>...
Removes
//! ..
, /// ..
, /** .. */
, #[doc = ".."]
) with --remove docs
.// ..
, /* .. */
) with --remove comments
.```rust
pub mod a { //! A.
/// A.
pub struct A; // aaaaa
} ```
↓
```rust
pub mod a { pub struct A; } ```
--minify <MINIFY>
Minifies
--minify lib
.--minify all
.Not that the minification function is incomplete. Unnecessary spaces may be inserted.
--no-resolve-cfgs
Do not resolve #[cfg(…)]
.
--no-rustfmt
Do not format the output.
--no-check
Do not check the output.
Dual-licensed under MIT or Apache-2.0.