Guest User

Untitled

a guest
Nov 22nd, 2017
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. [package]
  2. name = "ls"
  3. version = "0.0.1"
  4. authors = ["Jeremiah Peschka <jeremiah.peschka@gmail.com>"]
  5.  
  6.  
  7.  
  8. [lib]
  9. crate-type=["dylib"]
  10. name = "uu_ls"
  11. path = "ls.rs"
  12.  
  13. [dependencies]
  14. getopts = "0.2.14"
  15. pretty-bytes = "0.2.1"
  16. term_grid = "0.1.5"
  17. termsize = "0.1.4"
  18. time = "0.1.38"
  19. lazy_static = "0.2.8"
  20. unicode-width = "0.1.4"
  21.  
  22. [dependencies.uucore]
  23. path = "../uucore"
  24. default-features = false
  25. features = ["entries"]
  26.  
  27. [[bin]]
  28. name = "ls"
  29. path = "main.rs"
  30.  
  31. [package]
  32. name = "uucore"
  33. version = "0.0.1"
  34. authors = []
  35.  
  36.  
  37. [dependencies]
  38. getopts = "0.2.14"
  39. time = { version = "0.1.38", optional = true }
  40. data-encoding = { version = "^1.1", optional = true }
  41.  
  42. [dependencies.libc]
  43. git = "https://github.com/rust-lang/libc.git"
  44. optional = true
  45.  
  46. [features]
  47. fs = ["libc"]
  48. utf8 = []
  49. encoding = ["data-encoding"]
  50. parse_time = []
  51. utmpx = ["time", "libc"]
  52. process = ["libc"]
  53. signals = []
  54. entries = ["libc"]
  55. wide = []
  56. utsname = ["libc"]
  57. default = ["fs", "libc", "utf8", "utsname", "encoding", "parse_time", "utmpx", "process", "entries", "signals", "wide"]
  58.  
  59. [lib]
  60. crate-type=["dylib"]
  61. path = "lib.rs"
  62. name = "uucore"
Add Comment
Please, Sign In to add comment