mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-31 20:31:19 -03:00
Put local dependencies in crates directory
With an increasing number of local dependencies, the repo root is getting somewhat bloated. This commit moves the two current local dependencies into the newly created `crates` directory, with the intention of using it for all future local dependencies as well. Some dependencies which are introduced by currently in-progress pull requests will need modifications in order for relative paths to work correctly.
This commit is contained in:
committed by
Johannes Altmanninger
parent
feaec20de6
commit
1c654f23af
17
crates/printf/Cargo.toml
Normal file
17
crates/printf/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "fish-printf"
|
||||
edition.workspace = true
|
||||
rust-version.workspace = true
|
||||
version = "0.2.1"
|
||||
repository.workspace = true
|
||||
description = "printf implementation, based on musl"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
libc = "0.2.155"
|
||||
widestring = { version = "1.0.2", optional = true }
|
||||
unicode-segmentation = "1.12.0"
|
||||
unicode-width = "0.2.0"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Reference in New Issue
Block a user